IE – care
IE5/IE6-7/IE8:
: Tell internet explorer which rendering method to use. (if you use not that, possibility with IE, is it will run as IE5 mode, where users can have position design problems + performences, so understand the user environment and apply that)
http://msdn.microsoft.com/en-us/library/ms535242(VS.85).aspx
<html>
<head>
<!– Procedure mainHeader is begin –>
<meta http-equiv=”X-UA-Compatible” content=”IE=5; IE=8″ >
css related terms
: absolute (for apply of position put special care on that)
<!–
load internet explorer speperate css file.
–>
<script type=”text/javascript”>if ( $.browser.msie ){
$.get(‘css/ie_global.css’, function(data){
$(document.body).append(data);
});
}else{
$.get(‘css/global.css’, function(data){
$(document.body).append(data);
});
}
</script>
zoom
: Many says that, zoom use this and that, but its not true, making the web bigger is a smart idea. Where your present view you can minimize even maximize to private presentations, IE5 till IE6 its fine. But IE7 and later IE8 included will make things problem. Here is the note.
document.body.style.zoom = ’50%’; // will work for IE5 quirks mode and IE6, IE7, but not IE8 and maybe later..
divid.style.zoom = ’50%’; // will work from IE8 till next, so we cant tell the whole body to zoom includeing all
html
tags start and ending
Image issues
png file problem to load on less then < IE7
Tools
IEtester/Developer tools of IE, use under IE 5.5 , 6, 7, 8… etc..