JQuery AJAX Reference
Keep in mind when using code below if requesting a page that requires login/restricted access, users login session is not carried over.
Snippet below is sample code usage illustrating two different methods of achieving similar result. See references for more info and full specifications.
Javscript (JQuery):
$.ajax({ url: 'http://www.websitename.com/', dataType: "text", type: "POST", data: { city: "NewYork"}, error: function(err) { alert("Error:" + err.toString()); }, success: function(data) { //$("#JQuery_modal_p").html(data); alert(data); } });
Javscript (JQuery):
$.ajax({ url: 'http://www.websitename.com/' + data1+ data2, dataType: "text", type: "GET", data: {}, error: function(err) { alert("Error:" + err.toString()); }, success: function(data) { //$("#JQuery_modal_p").html(data); alert(data); } });
References:
JQuery Ajax, http://api.jquery.com/jQuery.ajax/
Posted on December 28, 2010, in Programming & Development and tagged .net, application, asp, code, dev, development, javascript, jquery, program, programming, web. Bookmark the permalink. Leave a comment.
Leave a comment
Comments 0