After applying the css property text-transform:capitalize;
, I observed that it does not retain the capitalized value when sending the input through an http-post to another page.
- What could be the reason for this behavior?
- Is there a solution to preserve the capitalized text without resorting to php's
ucwords()
function?