Hi all
here is my problem,
I have a text area in html page containing a long html code.
like
some code
.....
.......
<input type="text" name="mobile" value="1234567890"/>
some code
.....
.......some code
.....
.......
From that code present in the <textarea> i need to extract following line
<input type="text" name="mobile" value="1234567890"/>
I want to write a java script Function which will search the entire code find the pattern <input type="text" name="mobile" and extract the value 12345690 using RegEx.