I tried the following :
$('div.tp-bullet').attr('style','opacity:.4');
and
$('.tp-bullet').attr('style','opacity:.4');
but it did not work.
What am I missing ?
I tried the following :
$('div.tp-bullet').attr('style','opacity:.4');
and
$('.tp-bullet').attr('style','opacity:.4');
but it did not work.
What am I missing ?
Try use .css
function to change the style like following :
$('div.tp-bullet').css('opacity','.4');