Click here to Skip to main content
15,891,033 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Hello friend i want to open a new window on my link button click using javascript..


i used this and it will work well..

.......
window.open('http://www.google.com','mywindow','width=400,height=200');
.......


but what i want is that i need to open a window with url but it will not contain http:// means it will be start with only www.google.com as shown under

.......
window.open('www.google.com','mywindow','width=400,height=200');
.......


please help me...


thank you...!!!!
Tejas Vaishnav
Posted

With Out Http in Browser it is not Possible.Protocol is important so. Only Chrome will accept.
 
Share this answer
 
Comments
Tejas Vaishnav 19-Aug-11 7:09am    
thnx
Um, I don't think you understand how the WWW works. The 'http://' is a protocol identifier, and it also explains to the browser that the URL you are asking it to open is absolute. A URL without a protocol identifier is taken as relative, and therefore it will try to open http://yoursite.com/folderyouwerein/www.google.com (and fail).

If you're upset by the browser displaying the full URL (including the protocol specifier) then, well, get over it. That's what browsers do (except Chrome which doesn't show it in recent versions).
 
Share this answer
 
Comments
Tejas Vaishnav 19-Aug-11 6:54am    
I better understand about the network protocol but i just wanted that for the project requirement
JavaScript
window.open('http://blahblah.com/mypage.aspx', target='new');


EDIT =======================

Tell me why this is wrong, and I'll either fix it or delete it, but don't just vote it 1 without an explanation.
 
Share this answer
 
v4
Comments
Mohammad A Rahman 19-Aug-11 20:45pm    
It is sad people vote 1 and doesn't give proper technical explanation why I am wrong or why they vote 1.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900