javascript - jQuery .show not working in .each -
here jquery code.i'm trying show.here code
$('#divtalentagent a').each(function () { $(this).show(); });
the above code doesn't work.but if modify below
$('#divtalentagent a').each(function () { alert('hi'); $(this).show(); });
it works..
try this
$('#divtalentagent a').each(function () { settimeout(function(){$(this).show();},0); });
Comments
Post a Comment