Issue with StackTack jQuery plug-in

Asked By 0 points N/A Posted on -
qa-featured

I am facing issues with StackTack jQuery plug-in. StackTack is used to tack Q&A from StackExchange websites.  I am using this with a more elevated blogger template. But it needs to update the style sheet.

And since, I don’t have much time to perform everything; I just changed it to the default template. Since then, the question is not showing on Internet Explorer 8. StackTack does not display the question and gives me this error message:

Error:

Windows Internet Explorer

"Errors on this webpage might cause it to work incorrectly."

To see this message in the future, double-click the warning icon on the status bar.

Object doesn't support this property or method.

jquery.stacktack.min.js

Code: 0

URI: http://app.stacktack.com/jquery.stacktack.min.js

I guess there is something wrong with the plug-in code of StackTack. If anyone has an idea, please help me.

SHARE
Answered By 0 points N/A #85208

Issue with StackTack jQuery plug-in

qa-featured

For sure there is something wrong in the plug-in code of the StackTrack, and therefore you will need to debug it. From experience, internet explorer seems to be so picky when it comes to spurious commas that you might be using in the code, and therefore you will need to check that out and correct. You will notice some of them in the scripts that you are using as noted in the example below:

clip:{scaling:'orig',//<– spurious comma before closing brace, remove},


The other possible cause of the problem is that you may be terminating your statements with a semicolon, and that might lead to problems as well. So you will need to check the scripts, and if possible run them through jslint to see if there are any errors and remove them.

-Lee Seen

Related Questions