xxxxxxxxxx
$('[name=myElementName]') //match any element with name=myElementName. i.e: <div name="myElementName"></div>
xxxxxxxxxx
// Using jQuery to find an element by name attribute
var element = $('[name="elementName"]');
xxxxxxxxxx
$('td[name="tcol1"]') // Matches exactly 'tcol1'
$('td[name^="tcol"]' ) // Matches those that begin with 'tcol'
$('td[name$="tcol"]' ) // Matches those that end with 'tcol'
$('td[name*="tcol"]' ) // Matches those that contain 'tcol'