Is it possible to add first time open event on dialog widget?
Sometimes we need to do something only the first time dialog
appears. I know we can do it easily via javascript using variables -
data check e.t.c. but it would be nice and easier if it was a core feature.
The same event for close would also be useful ( first time close
event )
Hi, is it possible to have in jquery plugins the abillity to have alias in the name of the options?
Example:
element_opacity:0.8,
could be something like:
elemOpac, element_opacity : 0.8,
or
elemOpac : element_opacity : 0.8,
or
elemOpac : , element_opacity : 0.8,
Or somehow else.
I know that maybe its javascript thing, variables e.t.c. but it will be very usefull, lets say if you have created a plugin with big option names and want to make it more functional... Or if you have this option:
elemo:0.8,
and use it inside plugin, but to the user you can present this option as
Lets supose we have lots of different animations running at the same time.
Something useful would be, if jquery could set a global variable somewhere (scope?) with a value (maybe: true) when animations are happening and unset if not:
jQuery_animation:true
If animation effect has not been called at all, the global variable would never exist.
Currently if i have many animations done together i have to check each element if is animated with .is(':animated')...
Hi, when we have an element and we are resizing it, then it gets position absolute (Resizable adds it). Is it possible the element not to get absolute position but relative?