Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save robertdevore/895e1841ba549c0d1398d19135014c37 to your computer and use it in GitHub Desktop.

Select an option

Save robertdevore/895e1841ba549c0d1398d19135014c37 to your computer and use it in GitHub Desktop.
jQuery(function ($) {
$(".price-dropdown").hover(
function () {
$(this).addClass('display-block');
},
function () {
$(this).removeClass('display-block');
}
);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment