Can someone suggest an effective method for modifying CSS3 with jQuery?
I was thinking of using a selector like this:
$("#con_back").css('-webkit-border-top-right-radius','0px');
$("#con_back").css('border-top-right-radius','0px');
$("#con_back").css('-moz-border-radius-topright','0px');
However, I am having trouble figuring it out.
Any assistance on this matter would be greatly appreciated.
Thank you in advance!