[jQuery] Re: problem with hide()

2008-01-11 Thread erdibalint
I am not sure I get you right but if you want your tables hidden when the page is downloaded initially why not render them with display:none at the beginning and show them when it is needed by an elegant jquery instruction? (something like $('table.your_class_here').show() ) Balint On Jan 11,

[jQuery] Re: draggable clones are not draggable

2007-10-25 Thread erdibalint
, erdibalint [EMAIL PROTECTED] wrote: Hi there, I've tried to achieve a simple thing with draggables. Put little pictures (wrapped in divs) on top of a bigger one using the drag-and- drop technique. This is what I've come up with: function makeDraggable(expr) { /** * Makes the selection

[jQuery] draggable clones are not draggable

2007-10-24 Thread erdibalint
Hello there, I am trying to accomplish a seemingly easy task, drag some small pictures onto a bigger one. I also want the dragged pictures to be cloned, so more of them could be used for the aforementioned purpose. What I've come up with is the following: pre function makeDraggable(expr) { /**

[jQuery] draggable clones are not draggable

2007-10-24 Thread erdibalint
Hello there, I am trying to accomplish a seemingly easy task, drag some small pictures onto a bigger one. I also want the dragged pictures to be cloned, so more of them could be used for the aforementioned purpose. What I've come up with is the following: pre function makeDraggable(expr) { /**

[jQuery] draggable clones are not draggable

2007-10-24 Thread erdibalint
Hi there, I've tried to achieve a simple thing with draggables. Put little pictures (wrapped in divs) on top of a bigger one using the drag-and- drop technique. This is what I've come up with: function makeDraggable(expr) { /** * Makes the selection (by expr) draggable */