Open EmidioStani opened 12 years ago
I have nivo jquery pluin nivo slider 2.7.1.
In the following code if I insert an
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.
ups, it doesn't look good but the solution is well displayed
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.