why is if (element.innerHTML == "") not working in firefox
but works fine in IE , any ideas please ?
|
why is but works fine in IE , any ideas please ? |
||||
|
Hard to say without seeing your HTML, but I'd say probably because you have some empty white space in the element, and IE doesn't treat that as a text node, while FF does. I believe it is actually a more strict standards compliance to treat any empty white space between tags as a text node, but IE doesn't comply. You could do:
Or just get rid of the whitespace in your HTML markup manually. |
|||||||||||||||||||
|
|
You could check if
|
|||||||||
|
|
An alternative method to check for the empty string is to check the length:
But, you'd still have to |
|||
|
|
|
For me, it seemed like setting my |
||||
|
|
elementthat you are checking). in this scenario many things could go wrong - i.e. yourelementcould be null. – rochal Sep 9 '10 at 13:53