Guest User

Untitled

a guest
Jun 18th, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. function select(id) {
  2. var xmlhttp;
  3. if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari
  4. xmlhttp = new XMLHttpRequest();
  5. }
  6. else {// code for IE6, IE5
  7. xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8. }
  9. xmlhttp.onreadystatechange = function () {
  10. if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
  11. document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
  12. }
  13. }
  14. xmlhttp.open("GET", "select.aspx?id=" + id, true);
  15. xmlhttp.send();
  16. }
Add Comment
Please, Sign In to add comment