[jQuery] Re: Multiple Events

2008-10-30 Thread Tallu
'), $('#FormID'), $('#display-div') - ricardo On Oct 29, 10:19 am, Tallu [EMAIL PROTECTED] wrote: I am trying to show and hide a div once some data is processed by the php.but the second event is not working.What am i doing wrong?     $(document).ready(function(){         //alert(Document

[jQuery] Multiple Events

2008-10-29 Thread Tallu
I am trying to show and hide a div once some data is processed by the php.but the second event is not working.What am i doing wrong? $(document).ready(function(){ //alert(Document is Ready); $(form#FormID).submit(function(){ //alert(Form is submitted);

[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 Loaded: +

[jQuery] Problem with JQuery - Ajax

2008-10-19 Thread Tallu
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!!