Advertisement
customfiy

Remove Some Color

Apr 21st, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. /*-- Remove color selections on full color --*/
  2. setTimeout(function() {
  3. $('.dd_844939_354438').on("change", function(){
  4. console.log($(this).find(":selected").val());
  5. if( $(this).find(":selected").val().trim() === "Full Color" ){
  6. $("#customify-pcolor .color-btn").hide();
  7. $('#customify-pcolor .color-btn[data-title="White"], #customify-pcolor .color-btn[data-title="Black"]').show();
  8. } else{
  9. $("#customify-pcolor .color-btn").show();
  10. }
  11. });
  12. }, 1000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement