Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
515 B
2
Indexable
Never
var colorname = '';
'CV_SHT_PR_BombayBlue_0026_hr__51291.1666845441.jpg?c=2'.split('_').map(function(imageProp){
   imageProp = imageProp.trim().toLowerCase().replace(/[^a-z]/g,'');
    if(imageProp !== ''){
        Insider.dom('.form-option-variant--color[title]').accessNodes(function(color){
            if(imageProp === (Insider.dom(color).attr('title') || '').toString().trim().toLowerCase().replace(/[^a-z]/g,'')){
                colorname = Insider.dom(color).attr('title')
            }
        })
    }
})