I have a table, and I\'m trying to find the width of each td in the table. I\'ve tried all kinds of variations of: $(\"td\")[0].width(), but none of them work,
$(\"td\")[0].width()
Use eq(0) instead of [0] to preserve the jQuery object that has the width() function.