editing html with jQuery / selecting a value and then putting it back with out and id or class
Hello everyone,
I am having a problem with extracting the information with in a <tb> which is located in a auto-generated html page.
Please see the picture below.
Bellow are thinks that i have tried:
$(document).ready(function(){
var toAdd = $("#WebPartWPQ2).parent().parent('tr:eq(2)').parent().parent().parent().parent()").closest('tr').find('td:eq(1)').text();
});
alert(toAdd);
I cannot seem to get the content of "test222" to appear. Could someone please advise of how I can make this work using jQuery or javascript?
Please help.