Firebug is throwing a ' $( ' error?
Posted
by Kyle
on Stack Overflow
See other posts from Stack Overflow
or by Kyle
Published on 2010-04-12T17:32:31Z
Indexed on
2010/04/12
18:43 UTC
Read the original article
Hit count: 389
I am getting a strange error in Firebug, that I am not getting in Webkit. The error comes up as ' $( ' in firebug.
Here's the code that is supposedly causing it to flip:
$.getScript("http://kylehotchkiss.com/min/?g=packageHome", function() {
$(".countdown").countdown({
until: new Date(2010, 6 - 1, 5),
layout:'{dn} {dl}'
});
});
The error isn't specific to the countdown script, it's just giving me an error trying to call any plugin I just loaded in firefox. Any ideas?
© Stack Overflow or respective owner