Numeric links don't work under jquery 1.6.
The links show up as "undefined". Work around is to manually set the title.
I've encountered the same Problem. I will be looking for a solution. If you have already found a solution then please respond to this comment.
change line 231 of jquery.jshowoff.js from :
var linktext = $(this).attr('title') != '' ? $(this).attr('title') : i+1;
to:
var linktext = $(this).prop('title') != '' ? $(this).prop('title') : i+1;
if you want to modify your minified version then you'll need to use find and replace. .attr is only mentioned four times in the plugin so it shouldn't be hard to find. change the latter couple to .prop.
Respond if this doesn't solve the issue.
That did the trick, awesome!
Perfect, thank you.
Works! Perfect solution. Thanks @karloscarweber!
Thanks @karloscarweber! http://www.universemagic.com
wow! Thank you so much!. This helped me a lot =)
Thanks karloscarweber. That fixed what I was having trouble with.
Perfect thanks !! (Y)