[jQuery] Callback on $.Post not firing

2008-11-24 Thread Rage9
This is driving me loopy. Simple post, trying to get a result back from the server. Heck even copied it from the documentation and the callback just will not fire, but the post works fine: var answer = confirm(Delete Selected?); if (answer){

[jQuery] Re: Callback on $.Post not firing

2008-11-24 Thread Rage9
:[EMAIL PROTECTED] On Behalf Of Rage9 Sent: Monday, November 24, 2008 3:43 PM To: jQuery (English) Subject: [jQuery] Callback on $.Post not firing This is driving me loopy.  Simple post, trying to get a result back from the server.  Heck even copied it from the documentation and the callback

[jQuery] Getting all checked check boxes with a certain id

2008-11-21 Thread Rage9
I'm trying to get the values of all checked check boxes in a certain section of a page. Each of the check boxes has the same id, I could just as easily make it a class or whatnot. I'm using something like: var valArray = $('#' + id + ' input:checkbox').serializeArray(); Although I know the

[jQuery] Destroying parent tag when restoring original value.

2008-11-16 Thread Rage9
Having a heck of a time figuring this out, I have made a few fields (td'seditable, so when you click on them it puts in a form with a text box and a button to submit, and a button to undo it. Well when I undo it, everything looks fine but the data is trapped in another set of td tags. Is their