I have used jquery ZeroClipboard to open a link on click. There is a code like this which gives the height and width for the div clicking on which can go to the given site link. But the div is positioned in right place. Here is the code in zerocliplboard.js

this.div = document.createElement('div');
    var style = this.div.style;
    style.position = 'absolute';
    style.left = '' + box.left + 'px';
    style.top = '' + box.top + 'px';
    style.width = '' + box.width + 'px';
    style.height = '' + box.height + 'px';
    style.zIndex = zIndex;

The width and height is given dynamically as the link is listed for the 10 items in loop. But could not figure out on what basis the height and width are taken. Can anyone help for the solutions. Any suggestion will be appreciated.

Thanks in advance

link|improve this question

17% accept rate
3  
You might consider improving your accept rate – Joseph Silber Sep 15 '11 at 17:14
It is unclear to me what your question is. Are you asking how the width is calculated in the above code? If so, show us the rest of the HTML so we can see the box object. You also should have an accept rate above 80% or people will stop paying attention to your questions. Accepting an answer is the reward people get for writing the answer you consider the best one. – jfriend00 Sep 15 '11 at 17:33
Thanks I have no idea how the accept rate is given for the particular questions. – user75472 Sep 15 '11 at 17:38
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.