javascript - Html images not working in IE10 -
my codes working browser except ie10. mean, it's working not showing images. tried solution here didn't work- ie 10 images not showing up
here codes-
<!doctype html> <html> <head> <meta http-equiv="content type" content="test/html;sharset=iso-8859-1"> <script> function myfun() { alert("you here"); } </script> </head> <body> <img src="next.gif" alt="image not found" onclick="myfun()" /> <br/>next </body> </html>
all need click on 'allow blocked content'
and, if not work, replace
<meta http-equiv="content type" content="test/html;sharset=iso-8859-1"> with
<meta charset='utf-8'>
Comments
Post a Comment