Search results

  1. H

    Why IE doesn't really support jquery ajax?

    Now i have the following script as base.js function ExtConn() { this.getHTML = function(_url, querystring){ bodyContent = $.ajax({ url: _url, type: 'POST', data: querystring, async:false }); //alert(bodyContent); return bodyContent.responseText; }; this.sendForm =...
  2. H

    Why IE doesn't really support jquery ajax?

    Now i have the following script as base.js function ExtConn() { this.getHTML = function(_url, querystring){ bodyContent = $.ajax({ url: _url, type: 'POST', data: querystring, async:false }); //alert(bodyContent); return bodyContent.responseText; }; this.sendForm =...
  3. H

    how to get response HTML from $.ajax();?

    Hi, I'm having a problem using the jquery $.ajax() function. Okay, as far as i know the function can only place the HTML retrieved into an element (by using callback function). However, i didn't really want to use this. I wish that i could return the HTML tags retrieved within a function call...
  4. H

    how to get response HTML from $.ajax();?

    Hi, I'm having a problem using the jquery $.ajax() function. Okay, as far as i know the function can only place the HTML retrieved into an element (by using callback function). However, i didn't really want to use this. I wish that i could return the HTML tags retrieved within a function call...
  5. H

    Is it possible for someone add Java Sript, Flash etc to my HTML/CSS website?

    Sure, if your hosting provide PHP or server-side scripting feature, you could simply change your index.html into index.php or other script, this will let you make the page dynamic and let you interactively communicate with the user. Some googling on PHP will let you start coding dynamically.
Back
Top