I have a small snippet that captures the html of an external url, and stores it in "xmlhttp.responseText"
I want to be able to pick out a section based on one other variable, "known", which is a url that would be in href="" attribute of the <A> tag.
Basically, I want to say:
if the url "known" exists in the html anywhere then
move forward in the code until the anchor text is found, and capture that, and store as a variable.
else
send error
end if
I think I can use inStr() to find if the url exists,but not sure wehre i can go from there.
I hope this is clear. Thnak in advance for any help.
I want to be able to pick out a section based on one other variable, "known", which is a url that would be in href="" attribute of the <A> tag.
Basically, I want to say:
if the url "known" exists in the html anywhere then
move forward in the code until the anchor text is found, and capture that, and store as a variable.
else
send error
end if
I think I can use inStr() to find if the url exists,but not sure wehre i can go from there.
I hope this is clear. Thnak in advance for any help.