<script type="text/javascript">
$(document).ready(function () {
$("#aspnetForm img").load(function () {
$(this).width(64);
$(this).height(64);
});
});
</script>
<asp:TemplateField>
<ItemTemplate>
<img alt="" runat="server" class="pic" style="cursor:pointer" src='<%# StripHTML(Eval("cat_img").ToString()) %>' />
</ItemTemplate>
</asp:TemplateField>
It is working in Chrome, but not on IE. Please help me. My image is <p> <img src=....>
html tag in database. I cleared striphtml method.