I would like to know how I could code this in jquery using chaining?
var table = document.getElementById("deliver_alt_table");
var rows = table.getElementsByTagName("tr");
$(rows[0].children[1]).css('visibility', 'hidden');
This code works, but how can it be written in jquery with a single line?
source
share