migrating from ie8 to ie9 [duplicate] - javascript

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
migrating from ie8 to ie9
Is their any guidelines on migrating from ie8 to ie9 to run an application? What are the points to be considered for css, html, javascript before migrating?

Have a look at http://msdn.microsoft.com/en-us/ie/ff468705

Related

How can I know that the Firefox Developer tools are open with Javascript? [duplicate]

This question already has answers here:
How to detect if browser console / inspector is *open*?
(3 answers)
How do you detect if firefox DevTools is open? [duplicate]
(1 answer)
Closed 3 years ago.
I need to find a certain indications to detect whether or not Firefox Developer tools are open for the site I placed in. It has to be done with vanilla JS in the client side scope.
I found many indications for Chrome browser, but couldn't find even one stable way for Firefox.
Thanks

How do i block my website from loading on mobiles? [duplicate]

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.

Setting current page as homepage [duplicate]

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.

How to learn browser size with prototype js framework? [duplicate]

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
How do I get the size of the browser window using Prototype.js?
What is the function to use to get the browser size with prototype js framework?
var viewport = document.viewport.getDimensions();
See the API docs.

Do not let end-user save password [duplicate]

This question already has answers here:
Closed 12 years ago.
Possible Duplicate:
Disable browser ‘Save Password’ functionality
Is there a standard way to prevent the end-user's web browser from saving a password using HTML or maybe JavaScript?
Use the non-standard autocomplete="off". Your HTML won't validate with it, though.
Info at Mozilla Developer Center
Info at MSDN
In HTML5 you can use autocomplete="off" but that will only work on browsers that support it

Categories