Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /**
- * Funksjon som viser registrer-medlem skjema asynkront på siden (i div id="skjema")
- */
- function showForm(str) {
- if (str=="") {
- document.getElementById("skjema").innerHTML="";
- return;
- }
- if (window.XMLHttpRequest) {//Kode for IE7+, Firefox, Chrome, Opera, Safari
- xmlhttp=new XMLHttpRequest();
- } else {//Kode for IE6, IE5
- xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
- }
- xmlhttp.onreadystatechange=function() {
- if (xmlhttp.readyState==4 && xmlhttp.status==200) {
- document.getElementById("skjema").innerHTML=xmlhttp.responseText;
- }
- }
- xmlhttp.open("GET","getuser.php?q="+str,true);
- xmlhttp.send();
- }
- /**
- * Funksjon som viser resultatet av registrer-medlem skjema asynkront på siden (i div id="sub")
- */
- function submitForm(submitted) {
- if (submitted=="") {
- document.getElementById("sub").innerHTML="";
- return;
- }
- if (window.XMLHttpRequest) {//Kode for IE7+, Firefox, Chrome, Opera, Safari
- xmlhttp=new XMLHttpRequest();
- } else {//Kode for IE6, IE5
- xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
- }
- xmlhttp.onreadystatechange=function() {
- if (xmlhttp.readyState==4 && xmlhttp.status==200) {
- document.getElementById("sub").innerHTML=xmlhttp.responseText;
- }
- }
- xmlhttp.open("GET","showsubmitted.php?s="+submitted,true);
- xmlhttp.send();
- }
Advertisement
Add Comment
Please, Sign In to add comment