Search code examples
jqueryhtmlprogress-baralignment

jquery align progress bar


this is my situation:

HTML

<p>Controlla mail</p>
<div class="progressbar"></div>

JS

jQuery(function($) {
    $(".progressbar").progressbar({ value: 10 });
});

http://jsfiddle.net/michelejs/SByqS/

How can I align the progress bar with check mail text?


Solution

  • Here: DEMO JSFiddle

    Or with jQuery only:

    DEMO2

    jQuery(function($) {
        $(".progressbar").progressbar({
            value: 10
        }).css({marginLeft:'100px'}).prev('p').css({float:'left', lineHeight:'34px'});
    
    });