I got elements with the javascript code below;
var elems = $("*[class*='-highlight datepick-other-month']");
I want to remove classes end with "-highlight" such as; red-highlight, blue-highlight and etc, from "elems".
How can I do this? All feedbacks will be appreciated!