Unable to get JQuery to return AJAX data

Utetlyestisee

New Member
I'm relatively new to JQuery, so before I try to build the actual app, I'm trying to build a simple Ajax script that'll simply return the data.However, despite more or less copying and pasting the code, I still can't get it to work.\[code\]<html><head><title>This is a title!</title><script src="http://stackoverflow.com/questions/3873867/scripts/jquery-1.4.2.min.js" type="text/javascript" charset="utf-8"></script><script type="text/javascript"> $(document).ready(function(){alert ('1'); $.ajax({ url: 'process.php', dataType: "html", success: function(data) {$('#testsite').html(data);alert('Load was performed.');}});alert ('2'); });</script></head><body><div id='login'> <div id='testsite'></div><input type='button' id='lsubmit' value='http://stackoverflow.com/questions/3873867/Submit' /></div></body></html>\[/code\]The JQuery script is definitely loaded, process.php is definitely called up (it creates a text file just to prove that it has in fact been run) but anything echo'd in the process.php doesn't get sent through as data.It's probably something simple, but I've run out of ideas.Thanks in advance
 
Back
Top