Weird Browser / Ajax Error : Extra Junk Appears At The End Of Javascript Files In Firefox
This is a weird one. We're writing a Django application with some rich javascript UI, using both Yahoo YUI and jQuery. Our main page template now includes a fair number of js files
Solution 1:
You should read up on how YUI handles importing of its libraries. It may be configured to import libraries dynamically, in which case it imports them compressed (like the code you're seeing at the end is.) In any case, it isn't code "that's overflowed a buffer somewhere."
Most likely the error isn't in YUI or any of the other frameworks; the error lies in how you use it. Since you have provided no information about that I can't help you until you do.
Anyways, have a look at the YUI documentation.
Post a Comment for "Weird Browser / Ajax Error : Extra Junk Appears At The End Of Javascript Files In Firefox"