Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jquery function not working in IE

i'm trying to get a JQuery function running in IE7. In Firefox and Safari its working fine. Now i tried to debug, and even the simplest function is not working in IE, so i guess its a problem of the whole call.

<script src="js/jquery.js" type="application/javascript"></script>
<script type="application/javascript">
    $(document).ready(function(){
        alert('start in IE');
        fmmovement();
});
            </script>

The whole script website is http://project.formplusmedia.de/redesign

is there any trick to get this function running in the booring Internet Explorer? Hope someone can help me, thanks in advance.

regards

h-man24

like image 855
h-man24 Avatar asked Mar 26 '26 03:03

h-man24


1 Answers

in your script block change your type value to read:

<script type="text/javascript">

should fix it :)

like image 90
Wayne Austin Avatar answered Mar 28 '26 17:03

Wayne Austin



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!