I am using a jquery auto-complete search box. when i click on auto suggested page from dropdown, selected page is opening in new window but i need it to be open in same window like normal html link.
open a new html page link from an jquery autocomplete search box in same window using in java script
Asked
Active
Viewed 1,203 times
-4
-
2pls provide the fiddle – Anoop Joshi P Jan 23 '14 at 06:31
-
– user3216073 Jan 23 '14 at 06:37
1 Answers
1
You can use this to open a new tab in same window:
function openinnewTab() {
var win = window.open("yourlink", '_blank');
win.focus();
}
Note:It also depends on your browser settings
And also see the answer give by me Open a tab with a URL when link clicked

Community
- 1
- 1

Somnath Kharat
- 3,570
- 2
- 27
- 51