Here is how to stylize the border of the last element using jQuery.
$(document).ready(function() {
$("table.innercart tr:last").css("border", "none");
});
You can compare to prototype by going here
Here is how to stylize the border of the last element using jQuery.
$(document).ready(function() {
$("table.innercart tr:last").css("border", "none");
});
You can compare to prototype by going here
This entry was posted on June 12, 2008, 8:52 am and is filed under JavaScript, jQuery. You can follow any responses to this entry through RSS 2.0. You can leave a response, or trackback from your own site.
Fusion theme by digitalnature | powered by WordPress
Entries (RSS) and Comments (RSS) ^
#1 by Guy on June 16, 2008 - 4:52 pm
Can be shortened to:
$(function() {
$(“table.innercart tr:last”).css(“border”, “none”);
});
#2 by Alex Grande on August 26, 2008 - 8:54 pm
This is true if you do not need to load this script before the dom is fully loaded.