I would like to make a event listener, for when .quantity
select changes.
Since live() is depreciated, I've tried the both:
$('.variant').delegate('.quantity', 'change', function()
$('.variant').on('change', '.quantity', function()
The problem is, that when you click Add (and it has cloned and appended a variant div), that the event listener doesnt listen at the change on the select thats inside. No alert.
Only works with the first select
What could be the issue here?