[jQuery] Re: Removing Inner Tags

2009-06-15 Thread Clare
Beautiful! All of them work great. Thanks for the useful info! Clare

[jQuery] Removing Inner Tags

2009-06-15 Thread Clare
hi all, I have something like below: My Link I'd like to get rid of only the inner tags, 'p' and 'h1'. Any help would greatly be appreciated.

[jQuery] Re: How to prevent a particular field being submitted in form submission

2009-06-03 Thread Clare
It's working like a charm now. I used mkmanning's way. Thanks for those who helped me! Clare

[jQuery] Re: How to prevent a particular field being submitted in form submission

2009-06-02 Thread Clare
I tried disabing the field, but unfortunately no respose from the server in ajax call. $("#myFieldId").attr({value:""}) works fine. Is there any way to do this without resetting the field value?

[jQuery] How to prevent a particular field being submitted in form submission

2009-06-02 Thread Clare
I have email, password and some other fields, and I'm using $.post to send data for Ajax submission. $("#MyForm").submit(function(){ $.post('/register.php', $(this).serializeArray(), callback, "json" ); return false; }); Th

[jQuery] How to prevent a particular field being submitted in form submission

2009-06-02 Thread Clare
I have email, password and some other fields, and I'm using $.post to send data. $("#MyForm").submit(function(){ $.post('/register.php', $(this).serializeArray(), callback, "json" ); return false; }); In Ajax form submissi