Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the following code

$("#FOO").hover(function() {
    $(this).html('<p><a href="somepage.php" target="_self">first text</a></p>');
    }, function() {
    $(this).html('<p><a href="somepage.php" target="_self">hovered text</a></p>');
});

Is it improper to put <p> & <a> tags in the .html function? It is invalid XHTML and I'd like to make it cleaner. thanks!

from w3c validator: Error Line 134, Column 83: end tag for element "A" which is not open

the next error is "end tag for element "p" wich is not open. its just reading those tags weird.

….html('<p><a href="somepage.php" target="_self">first text</a></p>');

share|improve this question
How is this invalid XHTML? – Cfreak Sep 1 '11 at 16:18
target is not a valid XHTML attribute. – John Kurlak Sep 1 '11 at 16:19
What kind of element is #FOO? – John Kurlak Sep 1 '11 at 16:20
#FOO is a generic name for the div – Dirty Bird Design Sep 1 '11 at 16:25
Sounds like some other part of your HTML is broken. Does it validate when you comment that code out? – John Kurlak Sep 1 '11 at 16:28
show 1 more comment

1 Answer

up vote 1 down vote accepted

It's fine. You could use a $("#FOO p") selector if its really bothering you.

share|improve this answer
Not necessarily. What if #FOO is an <h1> tag? – John Kurlak Sep 1 '11 at 16:23
edited with validator error. thx – Dirty Bird Design Sep 1 '11 at 16:27
1  
Could also use: $('#FOO > p > a').text() P.S.: Kyle: #FOO p is slower than #FOO > p – John Kurlak Sep 1 '11 at 16:32
haha, the jQuery selector speed enhancements will never end =) – Kyle Hotchkiss Sep 1 '11 at 16:35

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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