[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

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

2009-05-21 Thread Mech7
Does anybody know why in IE: jQuery.css(e, background-color);jQuery.css(e, background-color); Not works on a elementl like: div class=directions rounded-big /div But will work with.. div id=directions class=rounded-big /div

[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] 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 faster ?

[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 chris.de@gmail.com wrote: I am hiding a login panel like: $(document).ready(function() {         $(#login).css({marginTop: -105px}); }); But in IE 8 it takes very long

[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 chris.de@gmail.com wrote: Ah I found out it's because SWFObject... does anybody know how a solution to this? On May 21, 10:28 am, Mech7 chris.de@gmail.com wrote: I am

[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] Re: Calling function in document ready?

2009-05-03 Thread Mech7
of .ready()? On May 4, 12:06 am, Mech7 chris.de@gmail.com 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] Re: Calling function in document ready?

2009-05-03 Thread Mech7
= {};    //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 () fires On May 4, 12:18 am, Mech7 chris.de@gmail.com wrote: Because

[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] 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] 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');

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

2009-01-22 Thread Mech7
): http://ui.jquery.com/demos/accordion#mouseover - Richard On Thu, Jan 22, 2009 at 4:08 AM, Mech7 chris.de@gmail.com wrote: 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

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

2009-01-22 Thread Mech7
Jörn On Thu, Jan 22, 2009 at 11:03 AM, Mech7 chris.de@gmail.com 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, Richard D. Worth rdwo...@gmail.com

[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
Jörn On Thu, Jan 22, 2009 at 11:03 AM, Mech7 chris.de@gmail.com 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, Richard D. Worth rdwo...@gmail.com

[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: 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 wouldn't put Flash as the single cause

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

2008-10-22 Thread Mech7
On Mon, Oct 20, 2008 at 6:21 PM, Mech7 [EMAIL PROTECTED] wrote: What is not working correctly with me is when I hover the dropdown menu i change the color of the sifr text so it remains black: http://www.mech7.net/tmp/sifr/ In script.js in line 26:        ,onRollOut: function

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

2008-10-20 Thread Mech7
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 particular page that isn't working? Karl Rudd On Wed, Oct 15, 2008 at 6:00 PM,Mech7[EMAIL PROTECTED] wrote: Ok when I go

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

2008-10-15 Thread Mech7
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 circles with the mouse on mouseout.. it will keep adding numbers. Also with mousenter, move

[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