[jQuery] Modal dialog?

2009-11-08 Thread Mech7
I have a problem where i might have more then one modal dialog in the same page.. I want to use a class for this, and select it on the position in the DOM... But after I open it one time JQuery UI seems to move the dialog windows to the bottom... so I cannot search for it in the same location agai

[jQuery] Reorder list items?

2009-05-21 Thread Mech7
How can I re order items in a list... kinda like what happends on: http://www.viget.com/work

[jQuery] css background-color not exists in IE with more then 2 classes..

2009-05-20 Thread Mech7
Does anybody know why in IE: jQuery.css(e, "background-color");jQuery.css(e, "background-color"); Not works on a elementl like: But will work with..

[jQuery] Re: dom ready takes very long in IE 8

2009-05-20 Thread Mech7
Ah i found it's because the SWF Object 2.2 beta :-) changed to 2.1 and works faster... On May 21, 10:38 am, Mech7 wrote: > Ah I found out it's because SWFObject... does anybody know how a > solution to this? > > On May 21, 10:28 am, Mech7 wrote: > > >

[jQuery] Re: dom ready takes very long in IE 8

2009-05-20 Thread Mech7
Ah I found out it's because SWFObject... does anybody know how a solution to this? On May 21, 10:28 am, Mech7 wrote: > I am hiding a login panel like: > > $(document).ready(function() { >         $("#login").css({marginTop: "-105px"}); > > }); &g

[jQuery] dom ready takes very long in IE 8

2009-05-20 Thread Mech7
I am hiding a login panel like: $(document).ready(function() { $("#login").css({marginTop: "-105px"}); }); But in IE 8 it takes very long to hide? I don't like to set it in CSS because if javascript is turned off people can still login as it is visible... is there anyway to make it faste

[jQuery] Re: Calling function in document ready?

2009-05-03 Thread Mech7
r M7 = {};    //"Global" variable accessible to all > > $(document).ready(function() { > >       M7.function = myFunction() { > >       }; > > }); > > You can now say call: > > M7.myFunction();  from anywhere on the page *after* $(document).ready >

[jQuery] Re: Calling function in document ready?

2009-05-03 Thread Mech7
outside of ".ready()"? > > On May 4, 12:06 am, Mech7 wrote: > > > I have a function within the > > > $(document).ready(function() { > > > function myFunction(){ > > > } > > > )); > > > But I want to call it from Flash? What name should I use? > > jQuery.myFunction does not seem to work..

[jQuery] Calling function in document ready?

2009-05-03 Thread Mech7
I have a function within the $(document).ready(function() { function myFunction(){ } )); But I want to call it from Flash? What name should I use? jQuery.myFunction does not seem to work..

[jQuery] Get background-image url ?

2009-04-24 Thread Mech7
What is the best way to get the background image url in css? i have found this in crossfade plugin but does not work in opera.. var target = $$.css('backgroundImage').replace(/^url|[\(\)]/g, '');

[jQuery] Fadein png black border IE 8 / 7..

2009-04-24 Thread Mech7
Does anybody know a fix for this... if i fadein an element with transparent png as bg, there is a big ugly black border around it. How to remove it 0_o

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
Ah if i change the accordion: .ui-accordion-content { padding: 1em 2.2em; } to .ui-accordion-content { padding: 0px; } It has the same issue it iwll jump, does anybody know why?

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
gt; On Thu, Jan 22, 2009 at 11:03 AM, Mech7 wrote: > > > That is what i used first but it's very specific about the html > > elements like it expects a p tag as content, that's why i decided > > to make my own... :) > > > On Jan 22, 4:28 pm, "Richa

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
Also the accordion has a issue where as you move fast over the items, before the animation is finished it does not catch the mouseenter event, so you have to go over it once again to open it.

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
gt; On Thu, Jan 22, 2009 at 11:03 AM, Mech7 wrote: > > > That is what i used first but it's very specific about the html > > elements like it expects a p tag as content, that's why i decided > > to make my own... :) > > > On Jan 22, 4:28 pm, "Richa

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
en't already): > > http://ui.jquery.com/demos/accordion#mouseover > > - Richard > > On Thu, Jan 22, 2009 at 4:08 AM, Mech7 wrote: > > > I have an example here: > >http://www.mech7.net/tmp/slide_down/ > > > When i hover the elements it jumps a little in verti

[jQuery] Slide down and up element and remain vertical size

2009-01-22 Thread Mech7
I have an example here: http://www.mech7.net/tmp/slide_down/ When i hover the elements it jumps a little in vertical space, does anybody know a solution how to remain the space my code is : $(document).ready(function(){ $('#portfolio div.item:first > div').addClass('open'); $('#p

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-28 Thread Mech7
Anybody have any other suggestions what i could try ? :( On Oct 22, 3:00 pm, Mech7 <[EMAIL PROTECTED]> wrote: > Thanks I have tried mouseenter and leave but it has the same problem : > ( > > On Oct 21, 7:24 am, MorningZ <[EMAIL PROTECTED]> wrote: > > > I would

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-22 Thread Mech7
; My suggestion is that you drop the SIFR menu items and use background > > images. Either that or you'll have to somehow tap into the "hover" > > event inside the SIFR Flash object. > > > Sorry I can't really help more. > > > Karl > > > On

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-20 Thread Mech7
should use the > "mouseenter" and "mouseleave" events. The enter and leave events are > specially built to not bubble (at least not unexpectedly). > > I do see what you mean by the mouseleave firing more than once in some > cases. No idea why. > > Do you have a

[jQuery] Re: Hover not work properly when moving mouse fast...

2008-10-15 Thread Mech7
g example and explain what you expect to happen? > > Karl Rudd > > On Wed, Oct 15, 2008 at 2:02 PM, Mech7 <[EMAIL PROTECTED]> wrote: > > >http://docs.jquery.com/Events/mouseout > > > Even in the example it does not work correct.. for example make some > > circ

[jQuery] Hover not work properly when moving mouse fast...

2008-10-14 Thread Mech7
http://docs.jquery.com/Events/mouseout Even in the example it does not work correct.. for example make some circles with the mouse on mouseout.. it will keep adding numbers. Also with mousenter, move it fast and the numbers will go up with big amounts. :( How to fix this, i can't use mouseout ca