I have created a flash menu with the following ajax links in Actionscript getURL("javascript:makeRequest('content.php?category=help', 'textContent')"); Code (markup): But now i like to use jQuery, but how do i use this in Actionscript $.get("content.php", { category: "help"}, function(data){ $("div#textContent").html(data); } ); Code (markup):