Codeinwp / Nivo-Slider-jQuery

Nivo Slider - The Most Awesome jQuery Image Slider
http://docs.themeisle.com/article/485-getting-started-with-the-nivo-slider-jquery-plugin
MIT License
1.25k stars 605 forks source link

caption with h1 not visible in opera 10.10 #268

Open EmidioStani opened 12 years ago

EmidioStani commented 12 years ago

I have nivo jquery pluin nivo slider 2.7.1.

In the following code if I insert an

tag opera 10.10 (mac os x) doesn't display the caption (I have opera 11.61 on Window XP and it works):

Title 1

This is an example of a HTML caption with a link.

so to fix it I replaced: $(this).html(title); with: $(this).empty().append(title);

and I replaced: nivoCaption.find('p').html(title); with: nivoCaption.find('p').empty().append(title);

Hope it helps somebody.

EmidioStani commented 12 years ago

ups, it doesn't look good but the solution is well displayed