Selectors Demo
| ISBN | Title | Media | Price | Inventory | Favorite |
|---|---|---|---|---|---|
| 978-0-470-45733-7 | DotNetNuke and Web Standards | eBook | $6.99 | -1 |
|
| 978-0-470-43870-1 | Professional DotNetNuke 5 | Paperback | $49.99 | 55 |
|
| 978-0-470-46257-7 | DotNetNuke 5 User's Guide | Paperback | $49.99 | 10 |
|
| 978-0-470-17116-5 | Professional DotNetNuke Module Programming | Paperback | $49.99 | 5000 |
|
JavaScript Source
jQuery.extend(
jQuery.expr[':'], {
aspnet: function(elem, index, match, array) {
return $(elem).filter('[id$=' + match[3] + ']').length == 1;
}
}
);
jQuery(function() {
$("tr:aspnet('myid2')").css("color", "blue");
});