guys. I have a little problem today... Code is below:
var ttw = 10;
$('.insttip:after').css('left',(ttw/2-8)+'px');
Of course, it's not working. The reason is that css() function adds css property using element's 'style' attribute. $('.insttip:after') is a pseudo element, so it has no 'style' attribute.
What should I do to solve this problem?
Thank you!