Add This Script in Detail Page You will get id of selected Product <script type= "text/javascript" > require([ 'jquery' ], function (jQuery){ jQuery( 'body' ).on( 'click' , '.swatch-option' , function (e) { var swatchid = jQuery( '.swatch-attribute' ).attr( 'option-selected' ); if (swatchid) { selpro(); } }); }); function selpro () { var selected_options = {}; jQuery( 'div.swatch-attribute' ).each( function (k,v){ var attribute_id = jQuery(v).attr( 'attribute-id' ); var option_selected = jQuery(v).attr( 'option-selected' ); console.log(attribute_id, option_selected); if (!attribute_id || !option_selected){ return ;} if (attribute_id || option_selected){ selected_options[attribute_id] = option_selected; } }); console.log(sel...
Comments
Post a Comment