Jump to content

use of xhtml and java


robert.access

Recommended Posts

hi all, please help me with this code really need it.

 

i have the following java code on my page and when I ude doctype HTML and click next the page go in same windows.

 

when I use XHTML doctype, the next  page it's open in new window. How to fix it to open in same windows? Please help!!!

 

<script src="lib/JsHttpRequest/JsHttpRequest.js"></script>
<script type="text/javascript" language="JavaScript">
function doLoad(value,div,id,type,order, hidden) {
document.getElementById(div).innerHTML = '<img src="images/indicator.gif" border="0">';
    // Create new JsHttpRequest object.
    var req = new JsHttpRequest();
    // Code automatically called on load finishing.
    req.onreadystatechange = function() {
        if (req.readyState == 4) {

            // Write result to page element (_RESULT becomes responseJS). 
          //  document.getElementById('result').innerHTML = '<b>MD5("'+req.responseJS.q+'")</b> = ' + '"' + req.responseJS.md5 + '"<br> ';
            // Write debug information too (output becomes responseText).
		update = req.responseText.split('||');

            document.getElementById(div).innerHTML = update[0];
		document.getElementById(hidden).value = update[1];
        }
    }
    // Prepare request object (automatically choose GET or POST).
    req.open(null, 'upl_backend.php?id='+id+'&type='+type+'&order='+order, true);
    // Send data to backend.
    req.send( { q: value } );
}





function doDelete(value,div,id,type,order,hidden) {
document.getElementById(div).innerHTML = '<img src="images/indicator.gif" border="0">';
    // Create new JsHttpRequest object.
    var req = new JsHttpRequest();
    // Code automatically called on load finishing.
    req.onreadystatechange = function() {
        if (req.readyState == 4) {

            // Write result to page element (_RESULT becomes responseJS). 
          //  document.getElementById('result').innerHTML = '<b>MD5("'+req.responseJS.q+'")</b> = ' + '"' + req.responseJS.md5 + '"<br> ';
            // Write debug information too (output becomes responseText).
		update = req.responseText.split('||');

            document.getElementById(div).innerHTML = update[0];
		document.getElementById(hidden).value = '';
        }
    }
    // Prepare request object (automatically choose GET or POST).
    req.open(null, 'upl_backend.php?id='+id+'&type='+type+'&order='+order+'&delete=yes', true);
    // Send data to backend.
    req.send( { q: value } );
}

</script>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.