| 1. |
Tell Me How To Prevent Internet Explorer From Crashing And Showing An "operation Aborted" Error When A <base> Tag Is Defined? |
|
Answer» INCLUDING a closing </base> tag will prevent this BUG in Internet Explorer being TRIGGERED. Because for HTML 4 compliant PAGES (a closing base tag is forbidden under HTML 4), you could use Internet Explorer conditional comments to keep your HTML valid and still include a closing base tag for HTML 4 documents: <base href="http://www.wisdomjobs.com/"><!--[if IE]></base><![endif]--> Including a closing </base> tag will prevent this bug in Internet Explorer being triggered. Because for HTML 4 compliant pages (a closing base tag is forbidden under HTML 4), you could use Internet Explorer conditional comments to keep your HTML valid and still include a closing base tag for HTML 4 documents: <base href="http://www.wisdomjobs.com/"><!--[if IE]></base><![endif]--> |
|