I am using jquery to remove/add CSS when onchange event fires on dropdown. When onchange fires the CSS is removed and never added. My code is given below. Please let me know if there are any issues with my code.
(function ($) {
$("select#edit-panes-delivery-select-address").change(function() {
$('div#uc-address-panes-delivery-zone-
wrapper').removeAttr('top','');
$("div#uc-address-panes-delivery-zone-wrapper").attr('top',
'547px');
});
}(jQuery));
htmlcode