doughharry posted this at 11:33 — 15th December 2014.
They have: 7 posts
Joined: Nov 2014
Hello friends..... Any one help me , How can i open new window on click event.
DarkLight posted this at 11:44 — 7th July 2015.
He has: 287 posts
Joined: Oct 2007
For a dynamic website, I'd use this: (jQuery)
$(document).on('click', '.linkname', function() {window.open("/path/to/page", "Page Name", "toolbar=no, scrollbars=no, resizable=no, top=200, left=450, width=350, height=50");});
But for any other setup, the normal way would be: (jQuery)
$('.linkname').click(function() {window.open("/path/to/page", "Page Name", "toolbar=no, scrollbars=no, resizable=no, top=200, left=450, width=350, height=50");});
Hope this helps
All the best news here: https://newsbotnet.com
markeden posted this at 08:18 — 25th July 2015.
They have: 3 posts
Joined: Jul 2015
Similar Question_@_ http://stackoverflow.com/questions/16182915/open-link-in-popup-window-wi...
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.
DarkLight posted this at 11:44 — 7th July 2015.
He has: 287 posts
Joined: Oct 2007
For a dynamic website, I'd use this: (jQuery)
$(document).on('click', '.linkname', function() {
window.open("/path/to/page", "Page Name", "toolbar=no, scrollbars=no, resizable=no, top=200, left=450, width=350, height=50");
});
But for any other setup, the normal way would be: (jQuery)
$('.linkname').click(function() {
window.open("/path/to/page", "Page Name", "toolbar=no, scrollbars=no, resizable=no, top=200, left=450, width=350, height=50");
});
Hope this helps
All the best news here: https://newsbotnet.com
markeden posted this at 08:18 — 25th July 2015.
They have: 3 posts
Joined: Jul 2015
Similar Question_@_ http://stackoverflow.com/questions/16182915/open-link-in-popup-window-wi...
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.