On Dec 26, 2007 11:56 PM, Steve Blades <[EMAIL PROTECTED]> wrote:
> You have the closing brackets and parens around the functions of your
> .ajax() call, but you don't appear to close out your
> $(document).ready(function(){ // everything is in here });

$(document).ready(function(){
      $.ajax({
              type: "GET",
              url: "words.php",
              dataType: "HTML",
              error: function(){
              alert('Error loading XML document');
      },
      success: function(data){
              alert("Data Loaded: " + data);
      }*);*
});


-- 
Jeroen

Reply via email to