significance
significance

Reputation: 5105

jquery css values in ems rathen than px?

can i get an elements css distance values in ems rather than px?

    #pointer{
        height:1em;
        border:1px solid black;
        width:1em;
        position:relative;
        top:15em;
    }

top = $('#pointer').css('top');

>> top = 15

Thanks :)

Upvotes: 1

Views: 1014

Answers (1)

Sarfraz
Sarfraz

Reputation: 382696

You can use this jquery plugin :)

Upvotes: 3

Related Questions