I am trying to remove a div border, but no luck. I commented on the code in my css and this is the correct property that I want to remove. Here is the code I'm currently using. Changing the background color works in the code below, but removeClass does not work.
var tab = getURLParameter("tab"); // Disable the visual style of the button since it is disabled for this page. if (tab == "Property") { $(".scrape-button").css('background-color', '#efefef'); $(".scrape-button:hover").removeClass('border'); }
Any ideas? Thanks!
source share