Hi,
There is a web page and I would like to get a value from this page. In this page there is a div (GroupFooterSection1) and inside of this div there are couple of divs. I would like to get the divs at the very rightside of this div.
Here is the sample div at right side: I would like to get the value with bold red.
How can I accomplish this via console or forms app?
Best Regards.
Loading
Ashish PatelPosted Dec 22, 2012, 2:00 AM
RaysefoPosted Dec 19, 2012, 2:44 AM
You got me wrong. I want to get the value (which is 683,979.38 in this example) from a HTML structure like the one I posted.
Ashish PatelPosted Dec 19, 2012, 12:58 AM
683,979.38
Modified :
683,979.38
// test class appended to your span tag
// now using jquery
$('.test').css('background-color','red'); // it should work
// hope that helps.