Thursday 24 March 2016

javascript - How to go to a URL using jQuery?

How to go to a URL using jQuery or JavaScript.



Go To URL

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.

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...