if value is not decimal then work fine but only problem with decimal value in below code
$('select#listspec_0__qty option[value = 105.3]').attr("selected", true);
Use Double Quotation "105.3"
$('select#listspec_0__qty option[value = "105.3"]').attr("selected", true);
1.4m articles
1.4m replys
5 comments
57.0k users