I am looking to update the style of my selection using jQuery.
After using this module to retrieve all items, I have a list of cells with new coordinates.
//cell list with new coordinates
cl = Object {0-0: th, 0-1: th, 0-2: th, 0-3: th, 1-0: td…}, id = "0-0"}
Next, I attempt to modify the style using the following function:
var $B = cl[id];
$B.css("border-left", "none");
Unfortunately, this function does not seem to work properly.
Uncaught TypeError: $B.css is not a function
Any suggestions on what steps I should take next?