Moreover, the alert function that prints the content of option, vDaeId, dgpId does not executed (I dont see a pop up in the browser).
That tells us that the code is failing by throwing an exception. My guess would be that you don't have at least one of the elements you're relying on having (D1, D2, or dgpids). So document.getElementById returns null, and when you try to access .value on it, you get an exception.
Note that the strings you use with getElementById must be id values, not names. So you must have id="D1" on one element, id="D2" on another, and id="dgpids" on another. Also note that id values can be case-sensitive, and that they must be unique on the page. (Most browsers will give you the first one in document order if you mess up that last rule, but...)
I assume that you're not calling goToPMDisplayer until the page is fully loaded, but if you're calling it during page load, make sure you're not calling it until after the elements exist (e.g., put the call to it lower in the document than the elements).
For problems like this, alert-style debugging went out some years ago. Here in 2012, we use proper debuggers. There's one built into all major browsers these days, even IE. You can set break points, walk through code, inspect the current state of the DOM... In short, no need to fumble about in the dark; you can shine light on what's happening.
In a comment on the question, you've said
I verified that all ements exist.
With all due respect, I just don't see how that can be. I suspect the id values are slightly different, or that they don't have id values at all, but rather they have name values.
Here's a complete, working example: Live copy | source
<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<meta charset=utf-8 />
<title>Test Page</title>
<style>
body {
font-family: sans-serif;
}
</style>
</head>
<body>
<input id="D1" value="valueOfD1">
<input id="D2" value="valueOfD2">
<input id="dgpids" value="valueOfdgpids">
<br><input id="theButton" type="button" value="Click Me">
<script>
function goToPMDisplayer(){
alert('Got ');
var option=document.getElementById("D1").value;
var vDaeId=document.getElementById("D2").value;
var dgpId=document.getElementById("dgpids").value;
var str= option + " "+ vDaeId + " "+ dgpId
alert(str);
var loc = "display.jsp?option="+option + "&vdaeid=" + vDaeId + "&dgpid=" + dgpId
alert("loc = " + loc);
}
document.getElementById("theButton").onclick = goToPMDisplayer;
</script>
</body>
</html>
alert(str)doesn't work, that means there's an error on one of yourvarlines`. My guess is one of those elements don't exist. – Rocket Hazmat May 16 '12 at 14:10</body>. That should make sure the elements exist before execution. – Joseph the Dreamer May 16 '12 at 14:10