I have problem this script dont working in IE 8 in Firefox is everything OK.

<html>
<style type="text/css">
 lip{   position:absolute;     }
</style>
<body>
<ul><lip>3<input type = "checkbox" name = "LH3" id ='lhpz12' value="ANO"></lip></ul>
<script type="text/javascript">
var listElements = document.getElementsByTagName("lip");
var element = listElements[0];
    element.style.fontSize = "24px";
    element.style.color = "green";
    element.style.left = "100px";
    element.style.top = "100px";
</script>
</body>
</html> 
link|improve this question
What's a "lip" element? Should that be "li"? Please describe the actual problem behaviour that you get in IE8, e.g., "Nothing happens" or "Error xyz is displayed" or... – nnnnnn Sep 27 '11 at 12:53
feedback

2 Answers

LIP isnt a valid tag, use something like a span or div.

link|improve this answer
Indeed. Internet Explorer isn't very good at handling things that are not HTML but claim to be (and "not HTML" includes most new things introduced in HTML 5 drafts). – Quentin Sep 27 '11 at 12:10
Your right and of course, it's also better to use jQuery (jqueryui.com) for this kind of trouble. – Baszz Sep 27 '11 at 12:10
3  
<span> and <div> elements are not valid inside <ul> elements. You might want to suggest using <li> instead. – Frédéric Hamidi Sep 27 '11 at 12:10
Quentin: IE 9 has support for those and the code snippet works for me there. – Joey Sep 27 '11 at 12:35
feedback

In IE, those tags aren't until you create one in JavaScript. You should use a span here.

link|improve this answer
ul may only contain li elements: w3.org/TR/html401/struct/lists.html#h-10.2 – Joey Sep 27 '11 at 12:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.