Hi,
I'm not an advanced JavaScript writer and I need this onClick Redirect to open on a new window browser, Whats missing in the code? All I have found is that to make the event open in a new page, I will have to write a window.open function, but I need the url broken in several variables and hidden from google for SEO purposes
Thank you....
I'm not an advanced JavaScript writer and I need this onClick Redirect to open on a new window browser, Whats missing in the code? All I have found is that to make the event open in a new page, I will have to write a window.open function, but I need the url broken in several variables and hidden from google for SEO purposes
Code:
<SCRIPT language="JavaScript">
function onClickRedirect9() {
var url1 = "http";
var url2 = "chat.example..com/request.php";
var url3 = "l=admin&x=1&deptid=&page";
var url4 = "http:://example..com";
window.location = url1+"://"+url2+"?"+url3+"="+url4;
}
</SCRIPT>