Details shows line 26 char 9, which, by looking at source view, is here:

<!--[if lte IE 6]>
<script type="text/javascript">
    $(document).ready(function(){
        $(document).pngFix(); <<<<< The $ is line 26 char 9
});
</script>
<![endif]-->

The following earlier lines seem to be relevant to pngfix:
<script type="text/javascript" src="/house/acagood2/misc/jquery.js?e"></script>
<script type="text/javascript" src="/house/acagood2/sites/all/themes/ability/js/jquery.pngfix.js?e"></script>

I have tried testing with replacement versions of pngfix from the pngfix website, but no luck. The only difference I can see between this and their recommendations is the "?e" in the script lines. Does anyone know what that does?

Comments

rhouse’s picture

Title: Internet Explorer gives "Error on page" message » FOUND FIX!

The script load line in template.php says:

drupal_add_js(drupal_get_path('theme', 'ability') . '/js/jquery.pngfix.js', 'theme');

but the file is actually called:

jquery.pngFix.js

Note the capital "F"? When made lower case, the thing runs correctly.