You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Showing error for the following drop down
<select name="data[Album][album_date][day]" class="sparkbox-custom">
<option value="">DD</option>
<option value="01">1</option>
<option value="02">2</option>
</select>
If the key is 1, 2 it is working... Otherwise it is showing error "Uncaught TypeError: Cannot set property 'selected' of undefined" on jquery.sparkbox-select.js at line 35
The text was updated successfully, but these errors were encountered:
If I change the line 31 to $option = $('.sb-custom[data-id=' + id + ']').find('option').filter('[value="' + $target.parent().attr('data-value') + '"]'); it is working fine... $target.parent().data('value') is only considering 01 as 1.
Showing error for the following drop down
<select name="data[Album][album_date][day]" class="sparkbox-custom">
<option value="">DD</option>
<option value="01">1</option>
<option value="02">2</option>
</select>
If the key is 1, 2 it is working... Otherwise it is showing error "Uncaught TypeError: Cannot set property 'selected' of undefined" on jquery.sparkbox-select.js at line 35
The text was updated successfully, but these errors were encountered: