one NOT what you need as page refreshing will override all "memory".
You are most likely looking for localStorage or, if you are using Internet Explorer prior to version 8, use cookies:
<script type="text/javascript"> var alerted = localStorage.getItem('alerted') || ''; if (alerted != 'yes') { alert("You are using Internet Explorer to view this webpage. Your experience may be subpar while using Internet Explorer; we recommend using an alternative internet browser, such as Chrome or Firefox, to view our website."); localStorage.setItem('alerted','yes'); } </script>
EDIT:
For versions of IE prior to 8, you need to use cookies, as there is no support for localStorage . This is the same concept, just different methods. Take a look at this question for implementing cookies on your page.
After you copied the code from, you should have 2 functions - createCookie() and getCookie() .
var createCookie = function(name, value, days) { .... //copy it from the other question .. } function getCookie(c_name) { .... //copy it from the other question .. }
Hope this helps!
Yani
source share