How to redirect in javascript ?
I am brandnew with javascript... but: learning !
I have the following code:
var m_D = confirm('blablabla');
if (m_D==true) {
HERE I WANT TO GO TO ANOTHER PAGE
}
What is the code to go to another page?
I found out that it is not : response.redirect and not location.href.
Help is appreciated(), Ger.

