Cross Browser Issues: Firefox Word Wrapping

While working on my new site, I wrote a quick little console application in C# to insert a million records into my SQL database(dummy data), to see how well my database will perform with tons of data.

The database performed superbly, but I noticed something else, the content in my side bar, didn't wrap correctly. In IE the content stretched the divs, in Firefox the content simply ignored the divs completely.



So I thought to myself, cool, I will fix this using CSS, then added the word-wrap style in my CSS, everything looked fantastic, until I opened it up in Firefox - Noooooooo.

I searched for hours on google, but couldn't find a working solution, until someone mentioned the wbr tag (word breaking tag) - basically you'll have to put a wbr tag, after every letter, I decided to write a quick javascript to take care of this - I made a C# version as well, but had a few concerns about how that might affect SEO.

 
<html>
    <head>
        <title>word wrapping</title>
        <style type="text/css">
            .content
            {
                border:1px solid black;
                width:160px;
                overflow: auto;
            }
 
            .wordwrap
            {
                word-wrap:break-word;		
            }
        </style>
        <script type="text/javascript">
            window.onload = function()
            {		
                if (window.attachEvent == undefined)
                {
                    var tag = document.getElementsByTagName("span");
                    for (var i = 0; i < tag.length; i++)
                    {	
                        if (tag.item(i).className == "wordwrap")
                        {
                            var text = tag.item(i).innerHTML;
                            tag.item(i).innerHTML = text.replace(/(.*?)/g, "<wbr />");
                        }
                    }
                }
            }
        </script>
    </head>
    <body>
    <div class="content">
        <span class="wordwrap">Pneumonoultramicroscopicsilicovolcanoconiosis</span> is the longest word in english
    </div>
    </body>
</html>
 

What happens here is very simple, I place looooonnngggg words into span (can make it any tag you want) tags, and assign the wordwrap css class to them, next I loop through all span tags on the page (If we're in firefox), and search for all span tags that have the wordwrap css class assigned to them, when I find one, I use a regular expression, to add a wbr tag after each letter.

Not a very cool situation, I hate the whole idea of having to write workarounds to make a browser behave in a certain manner - but sometimes one just have to live with certain things (or in this case you can always join the firefox dev team and fix it yourself).






Comments

Thank you

Thanks Christoff, Great workaround, even after 2 years no better solution. Cheers


Great

Great scripting ..Thank u


thanks

thanks. it works


Great

Glad to help, let me know if you've got any other issues.


Firefox Word Wrapping

THANKS Chistoff, this is perfect:- window.onload = function() { if (window.attachEvent == undefined) { var tag = document.getElementsByTagName("span"); for (var i = 0; i < tag.length; i++) { if (tag.item(i).className == "wordwrap") { var text = tag.item(i).innerHTML; if ((text.indexOf('<wbr>') < 0)) { tag.item(i).innerHTML = text.replace(/(.*?)/g, "<wbr />"); } } } } }


Firefox Word Wrapping

Hello, I tried your script "wordwrap" and it works well, but with one major problem. it is dependant upon which <a href I go to having clicked on the box AND then having pressed the BACK BUTTON. Please take a look at the problem, i hope you can fix it for me. Look at this simple page which I have written regarding the problem: http://www.nigels.de/ff10.html the first box(div)leaves a lot of <WBR> tags in there having visited this page: http://www.nigels.de (my homepage, I am not spamming) but the second box(div) is OK http://www.nigels.de/new.html. I dont understand too much about JS, so please bear that in mind when you answere. THX dododidi


comments on this logic

Thanks for this logic it is useful for very good thanks


what about user input?

How would I use this script to accept info from the screen, such as text from a text area with a specified character limit?


Great Script

Thanks for ur great script. It help me to completed my tasks. GREAT GREAT GREAT.


Someone finally asked this question

Hi Mike I wondered when someones going to ask that question, hehe. My initial thought when I wrote this, was to recursively iterate through the elements within a tag and insert wbr tags accordingly - which isn't all that great since that will have a performance penalty (thank you Javascript) if you've got thousands of nodes. Thats when I decided to simply use specific tags and only change them, and simply apply them to nodeless areas which might break our styles in FF, and assure there is no html within them. for example: <span class="wordwrap">the rain in llllllllllllllllllllllllloooooooooooooooooooonnnnnnnnnnggggggggggggggggggword falls mainly</span> <a href=""><span class="wordwrap">on some plain</span></a> <span class="wordwrap">Some text some text some text evenllllllllllllllllllllllllllllooooooooooooooooooonnnnnnnnnnngggggggggggggeeeeeeeeeeeerrrrrrrrrrrr word</span> a server side solution would make more sense if you do need this functionality, like in C# for example we'd match the html with a regular expression, and work replace text between indexes it returns MatchCollection matches = Regex.Matches(html, @"<(.|\n)*?>"); but like I said in the post i've got some SEO concerns if we go this route. (thats why i prefer it to live and die in the actual browser)


1 2 Last / 2 Pages (14 Entries)

Post comment

Name *
Email
Title
Body *
Security Code
*
* Required fields