jQuery: 'Capital sharp S' (ẞ) instead of auto generated 'SS' for text-transform: uppercase











up vote
0
down vote

favorite












I start with an example:



In german, the words "Buße" and "Busse" have different meanings (repentance and buses/busses). Both words would be transformed into "BUSSE" if I'm using them on my website with the css definition "text-transform: uppercase".



I'd like to avoid this scenario by using the beautiful "Latin capital letter sharp s" (ẞ) in my uppercase headlines. Because there is no possibility to handle this via CSS, I've wrote a little jQuery snipped that solve this.



jQuery( 'h1, h2, h3, h4, h5, h6, p, li, td, span' ).each( function() {
if ( jQuery( this ).css( 'text-transform' ) === 'uppercase' ) {
$( this ).html( $( this ).html().replace( /ß/g, 'ẞ' ) );
}
} );


This goes trough all the listed elements and check for each, if there is the problematic css property. If true, it replaces the lowercase ß with the uppercase ẞ.



This is working. But the performance of course.. You can imagine.



Is there any other way to do this, or is it possible to optimize this jQuery script with better selector or anything?



Im thankful for any help.










share|improve this question


















  • 2




    Does this problematic could appear in all h1, h2, h3, etc. Of your page? Or it can be only in certain cases? Because you could use a class and select by the class and not the whole HTML elements.
    – Brank Victoria
    Nov 21 at 14:49






  • 2




    Also in performance, Im not sure if it is better to check if the character "ß" exists in the current HTML before doing the replace.
    – Brank Victoria
    Nov 21 at 14:50










  • Thank you, @BrankVictoria. Both hints are useful. I think I can limit the selector to h1, h2 and .menu-item. Covering the whole thing into an if statement is also a smart solution. I'll do this but hopefully there are some more things I can do to optimize this.
    – chrisbergr
    Nov 21 at 14:59















up vote
0
down vote

favorite












I start with an example:



In german, the words "Buße" and "Busse" have different meanings (repentance and buses/busses). Both words would be transformed into "BUSSE" if I'm using them on my website with the css definition "text-transform: uppercase".



I'd like to avoid this scenario by using the beautiful "Latin capital letter sharp s" (ẞ) in my uppercase headlines. Because there is no possibility to handle this via CSS, I've wrote a little jQuery snipped that solve this.



jQuery( 'h1, h2, h3, h4, h5, h6, p, li, td, span' ).each( function() {
if ( jQuery( this ).css( 'text-transform' ) === 'uppercase' ) {
$( this ).html( $( this ).html().replace( /ß/g, 'ẞ' ) );
}
} );


This goes trough all the listed elements and check for each, if there is the problematic css property. If true, it replaces the lowercase ß with the uppercase ẞ.



This is working. But the performance of course.. You can imagine.



Is there any other way to do this, or is it possible to optimize this jQuery script with better selector or anything?



Im thankful for any help.










share|improve this question


















  • 2




    Does this problematic could appear in all h1, h2, h3, etc. Of your page? Or it can be only in certain cases? Because you could use a class and select by the class and not the whole HTML elements.
    – Brank Victoria
    Nov 21 at 14:49






  • 2




    Also in performance, Im not sure if it is better to check if the character "ß" exists in the current HTML before doing the replace.
    – Brank Victoria
    Nov 21 at 14:50










  • Thank you, @BrankVictoria. Both hints are useful. I think I can limit the selector to h1, h2 and .menu-item. Covering the whole thing into an if statement is also a smart solution. I'll do this but hopefully there are some more things I can do to optimize this.
    – chrisbergr
    Nov 21 at 14:59













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I start with an example:



In german, the words "Buße" and "Busse" have different meanings (repentance and buses/busses). Both words would be transformed into "BUSSE" if I'm using them on my website with the css definition "text-transform: uppercase".



I'd like to avoid this scenario by using the beautiful "Latin capital letter sharp s" (ẞ) in my uppercase headlines. Because there is no possibility to handle this via CSS, I've wrote a little jQuery snipped that solve this.



jQuery( 'h1, h2, h3, h4, h5, h6, p, li, td, span' ).each( function() {
if ( jQuery( this ).css( 'text-transform' ) === 'uppercase' ) {
$( this ).html( $( this ).html().replace( /ß/g, 'ẞ' ) );
}
} );


This goes trough all the listed elements and check for each, if there is the problematic css property. If true, it replaces the lowercase ß with the uppercase ẞ.



This is working. But the performance of course.. You can imagine.



Is there any other way to do this, or is it possible to optimize this jQuery script with better selector or anything?



Im thankful for any help.










share|improve this question













I start with an example:



In german, the words "Buße" and "Busse" have different meanings (repentance and buses/busses). Both words would be transformed into "BUSSE" if I'm using them on my website with the css definition "text-transform: uppercase".



I'd like to avoid this scenario by using the beautiful "Latin capital letter sharp s" (ẞ) in my uppercase headlines. Because there is no possibility to handle this via CSS, I've wrote a little jQuery snipped that solve this.



jQuery( 'h1, h2, h3, h4, h5, h6, p, li, td, span' ).each( function() {
if ( jQuery( this ).css( 'text-transform' ) === 'uppercase' ) {
$( this ).html( $( this ).html().replace( /ß/g, 'ẞ' ) );
}
} );


This goes trough all the listed elements and check for each, if there is the problematic css property. If true, it replaces the lowercase ß with the uppercase ẞ.



This is working. But the performance of course.. You can imagine.



Is there any other way to do this, or is it possible to optimize this jQuery script with better selector or anything?



Im thankful for any help.







javascript jquery replace character






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 21 at 14:28









chrisbergr

13125




13125








  • 2




    Does this problematic could appear in all h1, h2, h3, etc. Of your page? Or it can be only in certain cases? Because you could use a class and select by the class and not the whole HTML elements.
    – Brank Victoria
    Nov 21 at 14:49






  • 2




    Also in performance, Im not sure if it is better to check if the character "ß" exists in the current HTML before doing the replace.
    – Brank Victoria
    Nov 21 at 14:50










  • Thank you, @BrankVictoria. Both hints are useful. I think I can limit the selector to h1, h2 and .menu-item. Covering the whole thing into an if statement is also a smart solution. I'll do this but hopefully there are some more things I can do to optimize this.
    – chrisbergr
    Nov 21 at 14:59














  • 2




    Does this problematic could appear in all h1, h2, h3, etc. Of your page? Or it can be only in certain cases? Because you could use a class and select by the class and not the whole HTML elements.
    – Brank Victoria
    Nov 21 at 14:49






  • 2




    Also in performance, Im not sure if it is better to check if the character "ß" exists in the current HTML before doing the replace.
    – Brank Victoria
    Nov 21 at 14:50










  • Thank you, @BrankVictoria. Both hints are useful. I think I can limit the selector to h1, h2 and .menu-item. Covering the whole thing into an if statement is also a smart solution. I'll do this but hopefully there are some more things I can do to optimize this.
    – chrisbergr
    Nov 21 at 14:59








2




2




Does this problematic could appear in all h1, h2, h3, etc. Of your page? Or it can be only in certain cases? Because you could use a class and select by the class and not the whole HTML elements.
– Brank Victoria
Nov 21 at 14:49




Does this problematic could appear in all h1, h2, h3, etc. Of your page? Or it can be only in certain cases? Because you could use a class and select by the class and not the whole HTML elements.
– Brank Victoria
Nov 21 at 14:49




2




2




Also in performance, Im not sure if it is better to check if the character "ß" exists in the current HTML before doing the replace.
– Brank Victoria
Nov 21 at 14:50




Also in performance, Im not sure if it is better to check if the character "ß" exists in the current HTML before doing the replace.
– Brank Victoria
Nov 21 at 14:50












Thank you, @BrankVictoria. Both hints are useful. I think I can limit the selector to h1, h2 and .menu-item. Covering the whole thing into an if statement is also a smart solution. I'll do this but hopefully there are some more things I can do to optimize this.
– chrisbergr
Nov 21 at 14:59




Thank you, @BrankVictoria. Both hints are useful. I think I can limit the selector to h1, h2 and .menu-item. Covering the whole thing into an if statement is also a smart solution. I'll do this but hopefully there are some more things I can do to optimize this.
– chrisbergr
Nov 21 at 14:59

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53414284%2fjquery-capital-sharp-s-%25e1%25ba%259e-instead-of-auto-generated-ss-for-text-transform%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53414284%2fjquery-capital-sharp-s-%25e1%25ba%259e-instead-of-auto-generated-ss-for-text-transform%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Contact image not getting when fetch all contact list from iPhone by CNContact

count number of partitions of a set with n elements into k subsets

A CLEAN and SIMPLE way to add appendices to Table of Contents and bookmarks