Louis
Louis

Reputation: 4210

jQuery Find Width of Block Element

Is there an easy way to determine the width of a block element if it were to be inline? I can't make the elements inline so I need some way to determine how wide it should be and then modify the width.

Upvotes: 2

Views: 1403

Answers (1)

Louis
Louis

Reputation: 4210

I seem to have done it with the help of polyhedron. Here is the code if someone finds it on Google.

$("h1").each(function() {
    $(this).css("display","inline").css({width: $(this).width(), display: "block"});
});

Upvotes: 1

Related Questions