This question already has answers here:
How can I set default homepage in FF and Chrome via javascript?
(7 answers)
Closed 9 years ago.
I searched the web in order to find a code for a button what sets current page to homepage - but found nothing usefull.
Does anyone have this code?
Thanks all
I asume you are not asking how, you as the user of the browser, to set the homepage; this might be useful: https://stackoverflow.com/a/10751061/2612112.
Only old versions of IE support this.
Related
This question already has answers here:
How to detect a mobile device using jQuery
(66 answers)
Closed 4 years ago.
For example when someone visit my website he see a page for downloading an app
Use navigator.platform to get the platform of the browser. According to it open different pages.
This question already has answers here:
Javascript Bring window to front if already open in window.open?
(8 answers)
Closed 5 years ago.
I got a javascript that fills in the modal html. I would like after that to maximize the window if it is minimized or to focus that tab if it is maximized and not focused.
Anybody knows how to do it?
Note: I'd like it to also work in older IE if possible if not I am pleased with the new one also
Thank you all!
window.open("https://www.google.com");
This will open a new window and you can change the url to suit your needs
This question already has answers here:
Making a window pop under in chrome
(8 answers)
Closed 7 years ago.
I want to open a pop-under window on click, but I want to open it behind the current window.
I google this and found nothing useful about my problem.
Is there a way to do it?
Perhaps a simple path setting is what you need. Use this within a javascript sequence:
path = window.document.URL;
window.open(path,"_self");
This question already has answers here:
Use Browser Search (Ctrl+F) through a button in website?
(3 answers)
Closed 9 years ago.
Does javascript allow for to trigger a "find" action with a keyword on the current page?
No, there's no cross-browser way to do this. (I don't even know of one browser that exposes that functionality.)
This question already has an answer here:
From the server is there a way to know that my page is being loaded in an Iframe
(1 answer)
Closed 10 years ago.
Is there any way of knowing if a page is being iframed in?
I was thinking something like if (window.parent), but that obviously isn't right.
Can anyone help?
if (window!=window.top) { /* I'm in a frame! */ }