ok, so I have this small block of text:
function onfocus(event) {
if ($(this).val() == "Some Arbitrary Text") {$(this).val("");}
}
Using jQuery or JavaScript, I would like to find teh “Arbitrary Text”. This text block is constant, with the exception of the “Arbitrary Text”. Ideally, I would like a way to parse it without using complicated loops and regex.
To help clarify:
The fact that the text is javascript plays no part. Think of it as just text I am parsing. The “Arbitrary Text” can be anything, I am trying to find the text between the 2 quotes.
Not that I understood the question completely, but maybe
Of course, this is also possible without regexps, but it would make no sense – this is what regexps are for