I've been attempting to open a new tab with a specific URL.
Here's what I'm entering:
$window.open('www.example.com', '_blank')
Although a new tab opens as intended, instead of taking me to www.example.com
I am redirected to: http://localhost:8080/www.example.com
It seems to be combining my input with my current address
How can I successfully open a new tab with the exact URL I specified?
Many thanks!