Re: [jQuery] Plugin Requests

2007-03-23 Thread Leonardo K
Hi Glen, look this: Select box Plugin http://cbach.jquery.com/demos/selectbox2/ On 3/23/07, Glen Lipka [EMAIL PROTECTED] wrote: Ooh sorry, one more. It would be awesome to have a plugin that could transform a regular Selectoption structure into something that you could use CSS on. Maybe even

Re: [jQuery] Problem with validation

2007-03-08 Thread Leonardo K
) { error.attr(class, comErro); error.appendTo( element.next() ); } }); On 3/7/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Leonardo K schrieb: Whenever plugin validates the field it creates new label with error I forgot to update the example about errorPlacement, d'oh. Try

Re: [jQuery] Problem with validation

2007-03-08 Thread Leonardo K
Can I suggest something? Instead of making for example: messages:{ fieldName: { required: blabla } } To use a standard for all the messages: messages:{ required: blabla } ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Problem with validation

2007-03-07 Thread Leonardo K
Whenever plugin validates the field it creates new label with error JS: $(form).validate({ focusInvalid: false, event: blur, debug: true, errorPlacement: function(error, id) { error.appendTo( $(id).next() ); } }); HTML: li class= label for=titulo Títulospan class=req * /span/ label div

[jQuery] Problem with validation

2007-03-07 Thread Leonardo K
Whenever plugin validates the field it creates new label with error JS: $(form).validate({ focusInvalid: false, event: blur, debug: true, errorPlacement: function(error, id) { error.appendTo( $(id).next() ); } }); HTML: li class=label for=tituloTítulospan class=req * /span/label div input

Re: [jQuery] Form validator 0.2 - onblur instad of onsubmit

2007-03-06 Thread Leonardo K
Try this: $(#form1).validate({ event: blur, submitHandler: function(form) { $(form).ajaxSubmit(options); } }); On 3/6/07, amircx [EMAIL PROTECTED] wrote: hey.. i got this code http://pastebin.ca/383367 now its validate on submit, i want to modify it to onblur...

Re: [jQuery] Selecting PARENT DIV

2007-03-05 Thread Leonardo K
$(div.name).click(function(){ $(this).next().toogle( function(){ $(this).show(); }, function(){ $(this).hide(); } ); }); On 3/5/07, JQuery - SimDigital [EMAIL PROTECTED] wrote: How could I get the ID from a parent div of my element? I think that will be the shortest path to do what i need, as