Window operations with JQuery? [closed]
I want to open a new window with width 600 and height 300
Does jquery have a function to do it ?
No, jQuery doesn't have any method for that. You just use plain Javascript.
Example:
var handle = window.open('NewPage.html', '_blank', 'width=600,height=300');
精彩评论