Extract values of innerHTML using JQUERY
FF doesn't support InnerText Property. So if i use innerHTML i get "<NOBR>0057</NOBR>"
. I want to extract 0057 value. How can i ge开发者_JS百科t value of innerHTML without html tags using JQuery
Try using the text()
method: http://api.jquery.com/text/
精彩评论