this is a general-purpose way to make GET requests with Jquery:
var loadUrl=\"mypage.php\"; $(\"#get\").click(function(){ $(\"#result\").html(ajax_loa
Yes that is possible but you can also do it this way.
$.get( "mypage.php", { version: "5", language: "php" }, // put your parameters here function(responseText){ console.log(responseText); }, 'html' );