idとonclickの属性を追加しようとしています。FirefoxとChromeで機能しますが、何らかの理由でIE9では機能しません。私のコードに何か代替案や何かが間違っていますか?
$(".extendedGridView tr td a").each(function (index)
{
if ($(this).html() == "Update")
{
$(this).attr('id', 'insertButton');
$(this).attr('onclick', "return Validate('extendedGridView')");
}
});