[jQuery] Re: has anyone come across a plugin like this ?

2008-11-15 Thread Gildas
Take a look at MonoRail if you don't already know it ;-) http://castleproject.org/ On Nov 13, 7:28 pm, heysatan <[EMAIL PROTECTED]> wrote: > Sean, > > Thanks!  I really feel that's how web 2.0 should be used, minimally > and usefully.  I'll start working on the plugin next week, I'll try > and h

[jQuery] Re: Switch content of Div

2008-05-16 Thread Gildas
Please answer me! I think it is the html() command that makes problem, but text() doesn't fix it. Any idea? Thanks --Gildas On May 15, 1:09 pm, Gildas <[EMAIL PROTECTED]> wrote: > Hello! > > I'm trying to switch the content of two div when I drop one on > an

[jQuery] Switch content of Div

2008-05-15 Thread Gildas
gableContainer); //[div#bloc3.block] droppableContainer.html(draggableContent); draggableContainer.html(droppableContent); //Lines are no more clickable in draggableContainer } }); I will be very very glad for your help ! --Gildas

[jQuery] Re: Reinitialization of css values

2008-05-07 Thread Gildas
Greaaat! Thank you! My div are draggables and resizables. Now I would like to restore them in the previous state they were before I first click on it. Is that possible, please? Thanks! -Gildas On May 6, 6:54 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: >

[jQuery] Reinitialization of css values

2008-05-06 Thread Gildas
Hello people! I'm looking for a solution to put div properties to initial state. Explanation : $("div").toggle(function(){ $(this).animate({ width : "90%", height : "90%", left : "5%", top : "5%" },500); },fu