ボーダーの右の色をクラスに変更する方法:後
これは通常のCSSです
.profile-options a div:after {
border-color: transparent #999999 transparent transparent;
border-style: solid;
border-width: 18px;
content: "";
display: block;
left: -15px;
margin-top: -33px;
position: absolute;
z-index: 999;}
jqueryで選択したときに#999999を#333333に設定する必要があります
それらを試しましたが、機能していないようです
$(".profile-options a div:after").css({"borderRightColor":"#999"});
$(".yourOptions1:after").css({"borderRightColor":"#333"});