We have this piece of code:
<a class="loadbutton" onClick="$('checkout_form').submit(); $(this).update('<img src=\'images/loader/longLoad.gif\' /> Processing'); return false;">Pay now<br /><span class="vsmall">click once</span></a>
Which seems to not work if I take out the prototype.js library:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/prototype/1.6/prototype.js">
But when I use this library, it conflicts with some other code we are using.. so we want to do it without this prototype library, but still have the same effect on the button.
How can I go about doing this?