Re: [jQuery] super easy jquery question

2009-12-01 Thread HS8KIC
you can do this. ??? ??? ??? ??? ??? // reset input type text ??? ??? ??? ??? ??? $('#form_id input[type=text]').each(function(){ this.value = ''; }); ??? ??? ??? ??? ??? // reset textarea ??? ??? ??? ??? ??? $(''#form_id textarea').each(function(){ this.value = ''; }); ??? ??? ??? ??? ??? //

Re: [jQuery] how to apply a class to a using $('#id').html()

2009-11-22 Thread HS8KIC
Hi. how about this. for example onclick event. $('a').click(function(){ ??? ?? ? $('#status').addClass('avail').html(' ... '); }); Aom. Tristan wrote: Hello, i have in my script something like that $('#status').html('' + email + ' is OK'); instead of that i want to apply on my div sta

[jQuery] Multi event one action

2009-10-22 Thread HS8KIC
What I want is $('select').change and?? $('input').blur do the same action with write function only once. Thank you. Paisal.

[jQuery] Re: png fix with jquery ui?

2009-10-08 Thread HS8KIC
jessie wrote: Is there such a thing as a jquery ui plugin for png? Jess I found one but has never test it  you can try. http://jquery.andreaseberhard.de/pngFix/ Aom.