To show items on hover instead of on click, change $(‘[data-showme]’).click(function(event){
event.preventDefault(); to $(‘[data-showme]’).hover(function(event){
event.preventDefault();
To show items on hover instead of on click, change $(‘[data-showme]’).click(function(event){
event.preventDefault(); to $(‘[data-showme]’).hover(function(event){
event.preventDefault();