[jQuery] Re: [validation] how to return for jquery.Format

2009-07-09 Thread Manolet Gmail
how i can use variables to build the url? On Sat, Jul 4, 2009 at 12:08 PM, Jörn Zaefferer wrote: > > Use the remote method: > http://docs.jquery.com/Plugins/Validation/Methods/remote#url > > Jörn > > On Sat, Jul 4, 2009 at 6:30 PM, Manolet Gmail wrote: >> >>

[jQuery] Re: [validation] how to return for jquery.Format

2009-07-04 Thread Manolet Gmail
s/remote#url > > Jörn > > On Sat, Jul 4, 2009 at 6:30 PM, Manolet Gmail wrote: >> >> Hi, im adding a method. i want to display a message like: >> THECONTENTOFMYINPUT is already user. this is what im doing. >> >>          jQuery.validator.addMethod("checkna

[jQuery] [validation] how to return for jquery.Format

2009-07-04 Thread Manolet Gmail
Hi, im adding a method. i want to display a message like: THECONTENTOFMYINPUT is already user. this is what im doing. jQuery.validator.addMethod("checkname", function(value, element) { var name = $('#PromotionName').val(); var promotion_id = $('#Promo

[jQuery] [validate] Custom function when error field

2009-06-24 Thread Manolet Gmail
Hi, im using the 'success' param to add some extra step when validating: i change the background color of the parent div to green. Also, if there is an error i want to change the background color of the parent div to orange, but i cant found a function/callbackMethod/propiertie like 'error' or some

[jQuery] [autocomplete] display a loading gif

2009-02-09 Thread Manolet Gmail
Hi, i need to show a loading gif while autoocmplete plugins make the ajax ask. is there anyway?

[jQuery] Re: disable form submit when pressing enter key.

2009-01-19 Thread Manolet Gmail
no lo he probado pero eso.. haria que el wrote: > $(document).keypress(function (evt) { > if (evt.keyCode == 13) { > $(':submit').attr('disabled', 'disbled'); > } > }); > > Maurício > > -Mensagem Original- &g

[jQuery] disable form submit when pressing enter key.

2009-01-19 Thread Manolet Gmail
I need to disable form submission on Enter Key press, is there anyway to do this for a single form?