0

My codes are working all browser except IE10. I mean, it's working but not showing the images. I tried the solution here but didn't work- IE 10 images not showing up

here are my codes-

<!DOCTYPE html>
<html>
    <head>
        <META HTTP-EQUIV="content type" content="test/html;sharset=iso-8859-1">
        <script>
            function myfun() {
                alert("you are here");
            }
        </script>
    </head>
    <body>
        <img src="next.gif" alt="image not found" onclick="myfun()" />
        <br/>NEXT
    </body>
</html>
Community
  • 1
  • 1

1 Answers1

0

All you need to do is to click on 'Allow blocked content'

And, if this does not work, you could replace

<META HTTP-EQUIV="content type" content="test/html;sharset=iso-8859-1"> with

<meta charset='utf-8'>