xml

I wanted to write a Greasemonkey script to modify all mailto: links on a page, but to do that, I have to find them first. Here’s my first attempt: //a[@href]/text()[contains(.,”@”)] It’s pretty bad. I wanted to find links starting with “mailto:” but couldn’t figure out how to operate on the href attribute. second attempt: //a/@href[contains(.,”mailto:”)]/..…

Read More Using XPath to find email address links