Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Last post Jan 13, 2012 09:25 AM by zisis_1
Member
8 Points
21 Posts
Jan 13, 2012 08:41 AM|LINK
Hi,
I want to find a way to read a specific text from a webpage by using Web Developer.
The code at this part of page is like this:
<span>The text that I want to read</span>
How is this possible?
All-Star
18926 Points
3662 Posts
Jan 13, 2012 08:58 AM|LINK
you can use jQuery for this.
<span id='readme'>The text that I want to read</span> jquery var text = $('#readme').text();
Jan 13, 2012 09:25 AM|LINK
Can you give an example?
zisis_1
Member
8 Points
21 Posts
Read specific data from a web page
Jan 13, 2012 08:41 AM|LINK
Hi,
I want to find a way to read a specific text from a webpage by using Web Developer.
The code at this part of page is like this:
How is this possible?
shashankgwl
All-Star
18926 Points
3662 Posts
Re: Read specific data from a web page
Jan 13, 2012 08:58 AM|LINK
you can use jQuery for this.
<span id='readme'>The text that I want to read</span> jquery var text = $('#readme').text();All is well if it runs well.
blog
zisis_1
Member
8 Points
21 Posts
Re: Read specific data from a web page
Jan 13, 2012 09:25 AM|LINK
Can you give an example?