Category Archives: html

css and email: how to do it

ShareI’ve been having problem applying css on email. I almost wanted to sleep but bumping on these articles awoke my senses. You will find tips and guidelines on these urls so please read them for their explanations on how to … Continue reading

Posted in css, html | Tagged , , | Leave a comment

iframes: Different ways to access it

ShareDifferent ways how to access iframes: document.getElementById(‘testiframe2′).src document.getElementById(‘testiframe2′).location.href frames['testiframe2'].src frames['testiframe2'].location.href frames[1].location.href frames[1].window.location.href frames['testiframe2'].window.location.href target=”testiframe2″ (loads only page2, not page1) Check out http://www.quirksmode.org/js/iframe.html for detailed explanation.

Posted in dom, html | Tagged , | Leave a comment

ie bug: form within a form not posting values

ShareYou might be wondering why you cannot post the values of some fields even it’s inside the form. Having a form within a form in your html code/dom is a BIG issue when it comes to ie. Some of the … Continue reading

Posted in dom, html, javascript | Tagged , , , | Leave a comment

DOCTYPE html PUBLIC

ShareI haven’t fully researched on this type but using the 2nd type of my code, some css doesn’t work but trying the 1st one works perfectly. Yeah XHTML 1.0 Transitional, has something to do with that but haven’t fully read … Continue reading

Posted in anything under the moonlight, html | Tagged , , , | Leave a comment

select box – things you can do with selectbox

ShareAt one point, I wanted to modify things on selectbox, like make some of it’s options inactive, modifying the different styles on the select options and so on. Luckily I found this site http://www.cult-f.net/2007/12/14/elselect/ on how to do it. For … Continue reading

Posted in html | Tagged , | Leave a comment