How to deserialize an html div when it has certain attributes to it?
Posted
by
user1676874
on Stack Overflow
See other posts from Stack Overflow
or by user1676874
Published on 2012-10-17T21:07:29Z
Indexed on
2012/10/17
23:00 UTC
Read the original article
Hit count: 168
For example this:
<div class="link_text">
<a href="http://www.stackoverflow.com">
<strong>Text</strong></a>
</div>
With normal tags like XML ones it is easy, you just create the class with the same name as the tag, so if the tag is:
<something></something>
you create a class called something, but how would you do this in HTML in an example div such as that one, with a class attribute inside?
© Stack Overflow or respective owner