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