Skip to content

Instantly share code, notes, and snippets.

@elijahmanor
Forked from maccman/jquery.sold.js
Created May 19, 2009 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elijahmanor/114349 to your computer and use it in GitHub Desktop.
Save elijahmanor/114349 to your computer and use it in GitHub Desktop.
// Sold on jQuery - just re-wrote the following Prototype code:
Element.observe(window, 'load', function(){
// This is for slow forms (like the signup one),
// so the user doesn't click 'Submit' twice.
$$('form.slow').each(function(frm){
var sub = frm.down("input[type='submit']");
if(sub) sub.disabled = '';
$(frm).observe('submit', function(e){
var sub = frm.down("input[type='submit']");
if(sub){
sub.disabled = 'disabled';
sub.value = 'Working...';
}
});
});
});
// And now:
jQuery(function($){
$("form.slow input[type='submit']").attr('disabled', '');
$("form.slow").submit(function(){
$(this).find("input[type='submit']").attr('disabled', 'disabled').val('Working...');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment