< Browse > Home /

| Mobile | RSS

emailtoid.net/i/959f02e9/

set Attribute in IE

Because IE has an incomplete implementation of DOM 1+, so that only the DOM 0 syntax is crossbrowser in case of style attribute
obj.style.CSSattribute=’value’
Regarding the HTML compounded attributes, IE needs the camelcase syntax
obj.setAttribute(’bgColor’,’value’)
obj.setAttribute(’colSpan’,’value’)
obj.setAttribute(’readOnly’,’readonly’)
and so on. Moz accepts camelcase as well, thus camelcase is crossbrowser.

[ More ] March 11th, 2009 | No Comments | Posted in Uncategorized |
admin

PHP Mysql Tutorial

Hi all,
There is a useful link for PHP Mysql tutorials.This teaches us about using PHP and mysql in a better way.
I’m sure that by the end of this tutorial you will have enough knowledge to build your own database driven website using PHP & MySQL.
you can find this at  http://www.php-mysql-tutorial.com/

[ More ] November 15th, 2008 | 1 Comment | Posted in Mysql, Php |