Friday 27 January 2017

javascript - jQuery location href


Possible Duplicate:
How do I redirect to another webpage?







I remember there's a redirect function in jQuery.



It was like:



$(location).href('http://address.com')


But what was it exactly? I couldn't remember and can't find it using Google Search.

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...