Change H1 content to lowercase with jquery
问题 I'm looking for a way to tranform my H1's content (actually in uppercase) to lowercase. Ideally, it could be great to change it to the capitalize css setting of text-tranform property if exist in jquery.Why in jquery ? because the css way doesn't allowed me to do so .. This is my starting code: $('h1').each(function(){ var h1content = $(this).val().toLowerCase(); $(this).text().toLowerCase(); }); thanks EDIT: fix it with adding this tips to the JS way , https://css-tricks.com/almanac