Central Align Problem in Mozilla

Alignment is a big problem in different Browsers. For example some times central alignment of table shows correctly in IE (Internet Explorer). But shows as aligned left in Mozilla. There is a lot of solutions for this. In mozilla you know, for central align , there is a special string : -moz-center eg: text-align:”-moz-center” Similarly [...]

1 Comments

Javascript: Check an image is Loaded or Not

How can we check whether an image is loaded fully or partially using javascript. It is possible See the Example Below. function IsImageOk(img) { // During the onload event, IE correctly identifies any images that // weren’t downloaded as not complete. Others should too. Gecko-based // browsers act like NS4 in that they report this [...]

8 Comments

IE (Internet Explorer) Form Tag problem

IE (Internet Explorer) Form Tag problem Most of the desingners of html , perhaps faced this problem, that when use form tag, extra white space or page break appear. This is most in the case of using form tag outside a table or a td tag. There is no problem for the same condition in [...]

14 Comments