Let's say i got a list looking like this:

<ul style="width:980px;">
     <li style="display:block; float:left;">Lorem ipsum</li>
     <li style="display:block; float:left;">Lorem ipsum #2</li>
     <li style="display:block; float:left;">Lorem ipsum #3</li>
     <li style="display:block; float:left;">Lorem ipsum #4</li>
     <li style="display:block; float:left;">Lorem ipsum #5</li>
     <li style="display:block; float:left;">Lorem ipsum #6</li>
</ul>

How would i find the correct width of each li in this list?

Currently i tried to loop the li's and then print out the outerWidth, innerWidth and width.

All seems to return 0 as width.

Got any ideas on how to get the correct with of the elements without having to calculate the length of the string?

link|improve this question

Can you add your js code? – graphicdivine Dec 12 '11 at 11:01
count letters, multiply it by constant, add some additional space. – Marek Sebera Dec 12 '11 at 11:02
Your approach is correct, but are you sure you do it after the DOM is loaded? Could you post your code? – solendil Dec 12 '11 at 11:02
create a jsfiddle that replicates your issue – chim Dec 12 '11 at 11:06
not really on topic but...Is there any reason to put the same css rule on every li element instead of, for example, giving a class to the ul? – microspino Dec 12 '11 at 11:07
show 2 more comments
feedback

5 Answers

up vote 5 down vote accepted

You can just use the width method. eg.

$('li').each(function() {
    alert( $(this).width() );
});

This requires:

  • The DOM to be loaded (i.e. run the code from a ready handler)
  • The elements to be visible on the page
    • The element itself cannot be display: none
    • And all parent elements must be visible

http://jsfiddle.net/DvNf5/

link|improve this answer
Already wrote that returns 0 no matter what. – Dannie Hansen Dec 12 '11 at 11:02
@DannieHansen - Can you produce a jsfiddle that reproduces your problem? That will make it easier to see what's wrong. – James Allardice Dec 12 '11 at 11:05
Returns 79, 99, ... for me. What browser are you using? And are you running your script after the DOM has loaded? – a'r Dec 12 '11 at 11:37
Read the comment on the main post :) Thanks, was entirely my mistake. Been sitting with the issue for like 4 hours straight. We all got our blond moments. – Dannie Hansen Dec 12 '11 at 11:43
feedback

This code is returning widths for me -

$("ul > li").each(function() {
    alert($(this).width());
});

Demo - http://jsfiddle.net/CdyYa/

link|improve this answer
feedback

Works for me:

    $("li").each(function(){
       console.log( this.offsetWidth ); 
    });

//79 99 99 99 99 99

http://jsfiddle.net/63nxL/

link|improve this answer
Darn it :) That returns 0 as well. – Dannie Hansen Dec 12 '11 at 11:05
@DannieHansen, then your page does something different from jsfiddle :P – Esailija Dec 12 '11 at 11:06
Looks like if i turn block on and off using chromes editor(HTML) and then execute the function to fix the width one more it works. But no matter when or where i execute the fix with in my JS it won't return correct widths. – Dannie Hansen Dec 12 '11 at 11:14
feedback

using jquery... http://jsfiddle.net/y4X8S/ (the fiddle uses console.log instead of alert)

$( function(){
    $('li').each( function( i,el ){
        alert( $(el).width() );   
    } );
});
link|improve this answer
feedback

How about, instead of display: block; float: left;,

display: inline-block;
link|improve this answer
Tried that as well- No luck either. – Dannie Hansen Dec 12 '11 at 11:06
Works for me on all modern browsers. – Jason T Featheringham Dec 12 '11 at 12:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.