Posts Tagged ‘Browsers’

Recently I faced issue where IE Developer Tool suddenly stopped working and I need to do following steps to get it work …

1. Close all of your IE Windows
2. Delete the registry entry: HKCU\Software\Microsoft\Internet Explorer\IEDevTools\WindowPos

(optionally, type the following at a command prompt)

reg delete “hkcu\software\microsoft\internet explorer\iedevtools” /v windowpos

3. Open IE again.
4. Press F12 to open the dev tools

This Q is basic and you must know in case if you are a web developer.

Ans: Web Browser Engine, browser companies uses different web browser engines which may be their proprietary engines.

http://en.wikipedia.org/wiki/Web_browser_engine

http://en.wikipedia.org/wiki/List_of_web_browsers

Site by Peter-Paul Koch – A prime source to check browser compatibility information. We will find here the free assessments of the major browsers’ CSS and JavaScript capabilities, as well as their adherence to the W3C standards

http://www.quirksmode.org/

http://johnbokma.com/firefox/keymarks-explained.html

IE9 & Firefox 4

Posted: March 28, 2011 in Browsers
Tags:

IE 9 and Firefox 4 are out in the market in this month with some cool features. Download and checkout the cool features and keep on top with surfing web

http://windows.microsoft.com/en-US/internet-explorer/products/ie/home

http://www.mozilla.com/en-US/firefox/fx/

IE 9 supports only on latest Windows OSs (>= Windows 7) which brings down the IE9 usage over Firefox 4 where it supports many OSs including Windows XP where IE9 does not support it.

 

Following link has detailed explanation about Firebug Net Tab useful for web developers …

http://www.softwareishard.com/blog/firebug/introduction-to-firebug-net-panel/

This site is also gives links to following few interesting Addons for developers …

HTTP Archive Viewer – http://www.softwareishard.com/har/viewer/

IE6/IE7 are tough browsers to fix any UI related issues. You need to understand few hacks to solve those issues. Refer http://www.webdevout.net/css-hacks for more details.

A Java/.NET developer (not a core UI developer) may not have thorough idea on following css attributes. Knowing them makes your life easy in case if you are fixing any related UI issues.

Opacity, z-index, float, position

.modal-overlay {
opacity:0.85;
filter: alpha(opacity = 50);
-moz-opacity: 0.5;
overflow:hidden;
cursor:pointer;
position:absolute;
z-index:102;
background:transparent url(‘/close-button.png’) no-repeat scroll right top;
}

IE uses filter attribute and skips opacity attribute & other browsers skips filter.

IE8 running in IE7 Mode

Posted: November 16, 2010 in Browsers
Tags:

When you see things working or not working in IE8/IE7, most of the time even though you are using IE8 you see issues that are related to IE7 bcos IE8 mistakenly running in IE7 Mode!  As you might or might not know, IE messed up when Compatibility Mode is introduced.  Read more from http://msdn.microsoft.com/en-us/library/dd567845(VS.85).aspx

 The problem with this Compat Mode is that if you haven’t run Windows Updates lately or missed a recommended  update called:

“Compatibility View List Update …”

If you haven’t installed any updates you’re ALWAYS running in IE7 mode in IE8 when surfing your site or hundreds of other sites.  Here’s how to tell:

  1. Open IE8 and navigate to:  res://iecompat.dll/iecompatdata.xml
  2. Then see if your site is listed in the page 

If so, you’re running in Compat Mode all the time and you need to install recommended updates.

 Another way to tell what mode you’re in is to right click on the page and view source.  Find the body tag:

<body> 

If it has ie8 as a class, you’re good.  If it has ie7 in it, then you have to install above said updates.