I have these class with "+"
string for eg. crg-th-post-gsm+bb-sub-sub-all-programs
but the problem is when I try to $('.crg-th-post-gsm+bb-sub-sub-all-programs')
jquery can't seem to find it because of the '+' I tried testing it without the "+"
it works fine. How can I make it work with "+"
? is there a way?
another workaround I can also think is replace the string "+" using .replace but when I use the string.replace(/+/g,'-')
it does not recognize.