<script>
var tmp
$.get("http://intranet/Lists/Software/Kennisgebied.aspx?FilterField1=Directorie&FilterValue1=P:\airpex",
function(response) {
alert(response);
tmp = $(response).filter("ms-vb2").html();
alert(tmp[1]);
}
);
</script>
Hello I am trying to learn jquery, but i'm stuck.
What I want to do is get an array of the class "ms-vb2" out of response.
I want to get the text "1.0" in the TD tag.
<td class="ms-vb2">1.0</td>
Tnx for your help and time