Jump to content

help


westminster86

Recommended Posts

Im using Ajax to fetch a list of manufacturer names from a server. Im fetching the text from a database. At the moment, the user clicks the button, and the text is displayed in between the tags, <div id="targetDiv"> </div>.

 

My question is how would i display the results in a text box without page refresh?

   

 

Link to comment
https://forums.phpfreaks.com/topic/95991-help/
Share on other sites

would need to actually see your ajax script. however, it would be something like this. within your ajax script

 

http.onreadystatechange=function() {if(http.readyState == 4) {
  document.FORMNAME.FORMFIELD.value = http.responseText;
}

 

hope that helps just change the capital words to your settings.

Link to comment
https://forums.phpfreaks.com/topic/95991-help/#findComment-491969
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.