Free tooltip scripts need in Ajax

Asked By 20 points N/A Posted on -
qa-featured

Hello guys,

I am developing my web and i need a link/ URL from where i can get the Free tooltip scripts in Ajax. if someone has my required URL then help me.

SHARE
Best Answer by Dawn Andarson
Best Answer
Best Answer
Answered By 5 points N/A #160149

Free tooltip scripts need in Ajax

qa-featured

Hi,

https://www.w3schools.com/xml/ajax_intro.asp

https://www.w3schools.com/js/js_ajax_examples.asp

You can learn and try to write Ajax script in the following page. Ajax is very simple but useful technique. I said Ajax is simple because 100 lines codes will achieve Ajax.

AJAX = Asynchronous Java Script and XML.

AJAX is a technique for creating fast and dynamic web pages.

AJAX allows web pages to be updated asynchronously by exchanging small amounts of data with the server behind the scenes. This means that it is possible to update parts of a web page, without reloading the whole page.

<!DOCTYPE html>
<html>
<head>
<script>
function loadXMLDoc()
{
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject(“Microsoft.XMLHTTP”);
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById(“myDiv”).innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open(“GET”,”ajax_info.txt”,true);
xmlhttp.send();
}
</script>
</head>
<body>

<div id=”myDiv”><h2>Let AJAX change this text</h2></div>
<button type=”button” onclick=”loadXMLDoc()”>Change Content</button>

</body>
</html>

Answered By 0 points N/A #160150

Free tooltip scripts need in Ajax

qa-featured

 

Hi Alanjayason!

I’m not familiar with your problem but as I surf the web I sees many answer about it. I pretty sure this site will really help you. Just trust me to visit this site http://freeajaxscripts.net/directory/other_ajax_scripts/ajax_tooltip/details.html

All you want to find is there. You can also visit this site http://www.dhtmlgoodies.com/index.html?whichScript=ajax-tooltip for another answer for that question.

I hope it can help.

Related Questions