I get the following error in safari (7.0.3). Chrome and FF have no complaints and work just fine.

Error: Syntax error, unrecognized expression: #filters input:not([name^="radio-"]

From this line of code:

jQuery('#filters input:not([name^="radio-"]').change(function(e) { triggerIsotopeUpdate(); });

I have not been able to find solutions on SO that apply to my situation. Has anyone encountered this issue before? I would appreciate any help you can provide.

有帮助吗?

解决方案

You're missing a closing bracket (before .change()):

jQuery('#filters input:not([name^="radio-"])').change(function(e) {
                                           ^
    triggerIsotopeUpdate();
});
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top