i have this html line:
<nobr title="New" class="testClass">
<h1>ABC</h1>
</nobr>
How can i remove the text inside h1 or remove the whole h1 tag?
my last try:
$("nobr.testClass > h1").text('');
But this dont work
|
The following removes the
Though, your code should be working as written. Your error is elsewhere. |
|||||
|
|
try this:
and for deleting:
|
|||
|
|
|
To remove the tag
To empty the tag
|
|||
|
|
.remove(), though. – pimvdb Nov 27 '12 at 14:54