[jQuery] Re: Debuging AJAX

2009-11-27 Thread Rockinelle
I was not aware that leading digits was invalid markup. Thanks. I found my problem. Looking at other examples, they were returning false in the post callback function. That fixed my issue. Does it just require a return statement of any value to properly execute that function? On Nov 26, 10:55 

[jQuery] Re: Debuging AJAX

2009-11-26 Thread Rockinelle
Rockinelle said:: Any new eyes out there? Not sure why this got changed to accessibility discussion. On Nov 24, 4:46 pm, Rockinelle ericbles...@gmail.com wrote: Hey everyone, I've been trying to make a .post work for me and I'm using firebug to attempt to debug my problems. I am trying

[jQuery] Re: Debuging AJAX

2009-11-25 Thread Rockinelle
Any new eyes out there? Not sure why this got changed to accessibility discussion. On Nov 24, 4:46 pm, Rockinelle ericbles...@gmail.com wrote: Hey everyone, I've been trying to make a .post work for me and I'm using firebug to attempt to debug my problems. I am trying to use ajax to process

[jQuery] Re: Where to place my code on AJAX calls

2009-11-24 Thread Rockinelle
handler *after* the content is loaded via ajax On Nov 24, 7:39 am, Rockinelle ericbles...@gmail.com wrote: I am jumping into ajax with Jquery and I have what I think is an easy question. I have successfully used jquery load to bring an external php doc into my page. That page has a form

[jQuery] Re: Where to place my code on AJAX calls

2009-11-24 Thread Rockinelle
everything bound events can do, for exemple catching a form submission as for now) you'd probably stay on the safer side doing everything once the page is fully loaded. Michel Belleville 2009/11/24 Rockinelle ericbles...@gmail.com Ok the live technique worked, thanks! I understand the idea

[jQuery] Debuging AJAX

2009-11-24 Thread Rockinelle
Hey everyone, I've been trying to make a .post work for me and I'm using firebug to attempt to debug my problems. I am trying to use ajax to process a form and from what I can tell in Firebug, I am not getting a response. Now I have removed the action in the form itself so it's just reloads the

[jQuery] Where to place my code on AJAX calls

2009-11-23 Thread Rockinelle
I am jumping into ajax with Jquery and I have what I think is an easy question. I have successfully used jquery load to bring an external php doc into my page. That page has a form on it where I want to use jquery to reload that external page to reload with ajax when the form is submitted. What I

[jQuery] Bind Validate to button click event

2009-08-12 Thread Rockinelle
I am walking into an existing form that uses a custom ajax request to display search results at the button of the page. This is triggered by clicking a form button. I want to trigger the validation on this same click event rather than a submit event. I am just using basic validation at the

[jQuery] Trigger validate on button click event

2009-08-12 Thread Rockinelle
I am trying to trigger validation on a form that is using custom ajax request that is processed when a button is clicked. I have scoured the docs and I'm not clear how I can trigger validation on this click. The form is using basic validation at the moment. $(document).ready(function(){

[jQuery] Re: Bind Validate to button click event

2009-08-12 Thread Rockinelle
That did the trick, thank you. -Eric On Aug 12, 11:31 am, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: Try this:  $('#searchButton').click(function(){           if ($('#testBlog').valid())                formDoAjaxSubmit();        }); Jörn On Wed, Aug 12, 2009 at 8:04 PM,