I have placed the star rating code inside Bootstrap Tabs.
In Chrome, the star icons only show empty stars, when I click on any tab then the stars rating plugin is initialized and works properly. In Safari, the stars show a black background on page load, again if I click on any tabs then the it renders properly.
I understand this is because it's placed inside tabs which are hidden initially and I have tried the following code but doesn't work. Please help.
Hi,
I have placed the star rating code inside Bootstrap Tabs.
In Chrome, the star icons only show empty stars, when I click on any tab then the stars rating plugin is initialized and works properly. In Safari, the stars show a black background on page load, again if I click on any tabs then the it renders properly.
I understand this is because it's placed inside tabs which are hidden initially and I have tried the following code but doesn't work. Please help.
$(document).on( 'shown.bs.tab', 'a[data-toggle=\'tab\']', function (e) { $(".product-rating-view").starRating({ starSize: 15, activeColor: 'red', readOnly: true, emptyColor: '#ffffff', starGradient: { start: '#ffbd00', end: '#ffbd00' } }); });
Thanks for creating this cool plugin.