I'm trying to do something similar to this thread https://stackoverflow.com/a/3471258/2117845 and I think I want something like Harmen posted with the jquery code and said it's now a plugin?
What I have is ALL CAPS titles coming from a database. For example:
THE QUICK BROWN FOX IS ABOUT TO JUMP OVER THE FENCE
I want to look like:
The Quick Brown Fox is About to Jump Over the Fence
So is there a way to do this with CSS and jQuery to transform the text and eliminate certain words from being made into Proper Case? But I guess I'd need to keep the first instance. Like if I eliminated "the, is, to, and" then the first "the" in the title would be all lowercase. So would I be able to somehow eliminate those common words only if it's not the first word?
I know that's a lot but I'm not super familiar with jQuery. Is there a tutorial or plugin anywhere that shows how to do something like this. I've seen many questions about how to transform ALL CAPS text so a solution would probably be quite useful.