I want to create a html page that get data from a website table (not a database table -html one)
The code looks sorda like this:
http://jsfiddle.net/wpVtc/
I tried to use jQuery “.find” but I couldn’t get it to work.
It dosn’t have ANY classes of id’s .
Then, when I get the data I want to display only that.
Thank u!
~Stephan
EDIT:
The data is always going to be at the same place and it as always going to end with either ‘GB’ or ‘MB’.
If the data is always in the same position you could use
.eq(n).So if you example is:
the selector would be:
See: http://api.jquery.com/eq-selector/
Another solution:
See: http://api.jquery.com/contains-selector/