Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a jQuery countdown plugin on my page and it works fine on all browsers.

$('#defaultCountdown').countdown({until: 300 , format: 'dHMS'});

But when I include the ace editor javascript, the countdown just shows NaN for everything on IE, although it still works fine on other browsers.

When I include this:

<script src="js/jquery.countdown.js" type="text/javascript" charset="utf-8"></script>
<script src="js/ace/src/ace.js" type="text/javascript" charset="utf-8"></script>

the jQuery countdown plugin does not work on IE 8.

If I comment out the ace.js javascript, it again works on all browsers, including IE.

share|improve this question
The ace.js code can be found here: github.com/ajaxorg/ace/blob/master/build/src/ace.js – Jim Nov 25 '11 at 15:03

1 Answer

try using jqury in no conflict mode:

jQuery.noConflict();
jQuery('#defaultCountdown').countdown({until: 300 , format: 'dHMS'});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.