how to open url using javascript code example
Example 1: javascript open url
window.location.href = "http://example.com/";
Example 2: javascript open new window
<a onclick="window.open(document.URL, '_blank', 'location=yes,height=570,width=520,scrollbars=yes,status=yes');">
Open New Window
</a>