vba - Count tags in web page HTML code -
how can count number of tags in html web site code?
try use code:
f=ie.document.getelementsbytagname("p") msgbox f.count
but not work
$("p").length
if want count tags in html page use jquery ".length" gives length of tags in html page.
wiki
Comments
Post a Comment