I have inner each like
$('a[id^="Page"]').each(function () {
if ($(this).attr("id") == pageId) {
$('[id="' + pageId + '"]"').each(function () {
// code here
});
}
});
How to access the current element since this
is from previous each
?
Thanks!