Jquery Selector For Element Type And Class Name?
I have an element we'll call selectedTable that contains this innerHtml:
Solution 1:
Just concatenate the two:
$(selectedTable).find("td.ms-cal-nav-buttonsltr");
the selectors you tried were looking for a .ms-cal-nav-buttonsltr
element underneath the td
.
Solution 2:
$('td.ms-cal-nav-buttonsltr', selectedTable);
Post a Comment for "Jquery Selector For Element Type And Class Name?"