How to go to a URL using jQuery or JavaScript.
<a href="javascript:void(0)" onclick="javascript:goToURL()">Go To URL</a>
function goToURL(url){
// some code to go to url
}
I don't want to use window.location as I want to invoke this link from a popup.
New link should also open in a popup. I also don't want to use Ajax. Just simulate href in JavaScript.