[jQuery] Re: Problem with JQuery - Ajax

2008-10-27 Thread Mike Alsup
>     $(document).ready(function(){ >         alert("Document is Ready"); >         $("form#FormID").submit(function(){ >                 alert("Form is submitted"); >                 > $.post("process.php",{keyword:$("#keyword").val()},function(data) > { >                         alert("Data Loa

[jQuery] Re: Problem with JQuery - Ajax

2008-10-27 Thread Tallu
Java script code. $(document).ready(function(){ alert("Document is Ready"); $("form#FormID").submit(function(){ alert("Form is submitted"); $.post("process.php",{keyword:$("#keyword").val()},function(data) { alert("Data L

[jQuery] Re: Problem with JQuery - Ajax

2008-10-19 Thread Mike Alsup
> I am trying to use the ajax functions of JQuery but its not working > all the normal functions of jQuery are working as expected.What could > i be doing wrong. > Thanks!! There's no way to tell what you're doing wrong if you don't show us what you're doing. Please post an example or a link. T