forum

Home / DeveloperSection / Forums / JavaScript's window.open adds to url

JavaScript's window.open adds to url

Anonymous User 1651 09-Nov-2014

I am using MVC3 and jQuery. I am trying to open an external website. I am using the click event (and not a link) because I have some custom logic that will add values to a query string of the external site it is calling.

The JavaScript window.open function is opening a new window, however it is pre-pending the original website's URL to the begining of the external website's URL.

Here is the jQuery code I am using:

$(function () {
        $("#btnTransfer").click(function () {
            window.open('http:\\www.mindstick.com);
        });

The new window opens with the URL of:

http://www.mindstick.com

Any ideas?

I have tried using _blank as the name.

 


Updated on 10-Nov-2014
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By