Hi there. I am getting some strange results in IE. I can see www.jcbmobile.coresp.com/admin/ on Firefox but in IE I can't see nothing. I can't understand why. Does anybody know?
Don't know why, but remove this: <script src="../gutty/javascripts/tmt_validator.js" type="text/javascript" />, and all is well. cheers, gary
Every browser have diferrent client based compilation this mean you need to modify a additional script to IE in order to make the browser work effectively as well as Firefox
I do.... Script is not an HTML "empty" element, so you cannot use the XML self closing on it. changing it to: <script src="../gutty/javascripts/tmt_validator.js" type="text/javascript"></script> Would also fix it. By the XHTML specification self closing is only valid on "empty elements" -- and when the specification says an "empty element" it does not mean an element that has no content, but an element that CANNOT HAVE cDATA or other tag content. (IMG, BR, HR, META, LINK, etc). SCRIPT is not an "empty element"... even when it's empty. See why <div /> and <span /> are also invalid. Though I'm guessing since the domain name in question isn't even resolving here.
just copy and pest this link <script src="../gutty/javascripts/tmt_validator.js" type="text/javascript"></script>
I'm feeling a lot better about my missing this was a bump, given now someone's posted an answer almost immediately after your pointing out it was a bump...