i am adding a table row with text field using $('#table tr:last').before(""); When in press the enter key automatically form is submitted. How can i prevent the form submission when pressing enter key. I have used the code,
I am Loading/Initializing a Tab in a Ajax return. The problem is the tab closing is not working when i click to load the Tab more than one... here is the code..
I am Loading/Initializing a Tab in a Ajax return. The problem is the tab closing is not working when i click to load the Tab more than one... here is the code..
Hi, I am loading a jquery tab using Ajax. If i place the $('#tab').tabs(); method in the main page it doesnot work and it works when place the query in the loading jqury tab file
I have a problem in the jQuery in executing a method. The Method is executing more than one when i load(via Ajax) the contents(Button) in to a jquery tab.It happens when i close the currently loaded tab and reloading the same without refresh the page. If the do the same (loading more than one) the method for a button is executing the no of time the contents loaded.
I am loading Jquery tab using Ajax. The loaded tab contains a button for saving data. When i Load the tab more than one , the method for save is executing(triggering) more than one. Please help me..
Dear, I am loading jQuery tab using ajax when clicking on the side menu button. In click on the menu it loads the jquery Tab. The problem is that , the tab containg buttons for Saving data, searching etc. when i click the Save button it executes more than one , if the tab loaded twice.
Hi, I am loading a Html table through jquery ajax. In this table each row has a check box . when i click the check box i want to get all the details in the row. but i could not iterate through the table.
when i use $("#civilBillTable1 tr[class="+row+"]" ).each(function(){}); works perfectly, but the table is not loaded through jquery ajax
if i use below code, it will not work
$('input.chkAddItem').live('click',function(){
var itemId,description,unit,rate;
$("#civilBillTable1").live()('each',function(){ // the table is loading through Ajax alert("h");
hi, I created a page to upload a file to Server in jquary Tab, after processing the data i want to load the data in another Jquery Tab. usually i load the Contents in tab using the Code:
case 'search':$(ui.panel).load(ActionUrl,{'perform':'search','category':category,'searchdata':searchData}); this will send the details ( perform, category and seachdata) to the Server and can send a page form the Server. this page will load in the Next tab.
How can i Send a file to the Server using this load() function or any other Method.
hi, I want to submit a form without redirecting the page, when i use the codes $('#form').submit(); $('#form').submit(function(){ alert("Hi")}); it redirects the page..
i used this code also, $("#form").submit(function(){ $.post( "/demos/ajax-submit/ajax-register.php", $("#ajax-form").serialize(), function(data){ alert(data); } ); });