Tuesday, January 3, 2012

Chrome/Firefox/Safari Not Able to Read External Javascript/CSS

This is something a web programmer needs to take note as this could lengthen your coding time if this is not taken into account.Chrome/Firefox/Safari is not able to read external Javascript/CSS with commands such as:<link rel="stylesheet" type="text/css" href="testcss.php" /><script language="JavaScript" src="testjs.php"></script>if your broswer runs in STANDARD mode (with the declaration of DOCTYPE).Fix:1) Include your CSS/JAVASCRIPT in your HTML file that you are running,...
Read More »

iFrame Transparency Problem in IE and Solution

With the default setting, IE sets the background color of a HTML body to white if no value is set.For other browsers, the background color is set to transparent by default.In order to make IE iframe HTML to accept transparency, one has to set both the iFrame and HTML body value correctly.The iFrame:<iframe src="dummy.html" width=400 height=400 allowtransparency="true">Inside dummy.html:<body style="background-color:transparent">Well, that's the fix for IE. Just two small steps.Yes,...
Read More »

Monday, January 2, 2012

Chrome and setTimeout() Javascript Function

I once made the O capital letter and it won't work in Chrome.setTimeout() - OKsetTimeOut() - Not working in ChromeJust a trivial post but it is interesti...
Read More »