Receive Ajax and display output in a Photo?
- by user1709469
how to Receive Ajax and display output in a Photo?
Images should be displayed inside the div tag
After each of Bayer text, change the text to change the photo content
The photos displayed are written in the form
Thanks
this code
<script>
function AjaxRequest() {
var xmlhttp = null;
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp = new XMLHttpRequest();
} // else // code for IE6, IE5
return xmlhttp;
}
function ajaxAction() {
var font_category = document.getElementById("ajaxField").value;
var xmlHttp = AjaxRequest();
xmlHttp.open("POST" , "ajax.php?message=" + message , true);
xmlHttp.onreadystatechange = function() {
if(xmlHttp.readyState == 1)
response.innerHTML = "Loading...";
if (xmlHttp.readyState == 4 && xmlHttp.status == 200)
response.innerHTML = xmlHttp.responseText;
}
xmlHttp.send(null);
}
</script>
<textarea id="ajaxField12" name="message" rows="2" cols="20" value="Send" onchange="javascript:ajaxAction();">
</textarea>
<div id="ajaxResponse" height="42" width="42">
</div>