I am trying to implement Jquery Image Bubbles as shown here:
http://www.dynamicdrive.com/dynamicindex4/imagebubbles.htm
However Im receiving a JavaScript error in my Fiddle:
http://jsfiddle.net/NinjaSk8ter/hbMzV/
It was determined that loading the JavaScript file from the dynamicdrive Demo Page into the Fiddle would not function. Copying the JavaScript directly did function.
I was receiving an error that the
imgbubblesmethod does not exist. This means the resource wasn’t being loaded into the fiddle. The solution was simple.Rather than trying to load the file into your page from the dynamicdrive domain, copy it to your project folder and load it from there. In your fiddle, I pulled the actual source for the plugin into the JavaScript panel, which resolved the issue of the missing method.
Demo: http://jsfiddle.net/hbMzV/13/ (Tested in IE 7 to 10)