Displaying 2 results from an estimated 2 matches for "initpag".
Did you mean:
initpar
2006 Sep 09
3
[Urgent] Help: Safari/Konqueror issue with absolute div initially hidden
Hi all,
I have this project due tomorrow night (yes, it''s a Sunday...), and
only one trick bug left, which only occurs on Safari 2 and Konqueror
(3.5.2). I guess the Webcore/KHTML common tree goes here...
You''ll find a test page online:
http://tddsworld.com/bugs/hidden_absolute_issue/
If you want to tinker on your box, get the ZIP:
2006 Apr 20
0
Sanity check of my Draggable code
...and prototype etc.
My first mini-project was to use Draggable to adjust the column widths
in a page. Here''s the code (which seems to work) and any feedback would
be appreciated - especially if I''m doing things the wrong way.
Here''s the code:
var colSpacer
function initPage() {
colSpacer = new Draggable(''colspacer'', {
revert:false, constraint:''horizontal'',
change: function (d) { dragColTo(d.currentDelta()) }
});
}
function dragColTo(delta) {
var x = delta[0];
if(x < 10) { return; }
document....