[jQuery] Resizable() work incorrectly with Iframe in all browsers

2009-01-13 Thread Aleksandr Dorohovich
Hi guys. I have a problem with the resizable() function. When its use with iframe, vertical resizing work incorrectly. Who knows how fix it? Here is the code: title body { padding: 0;

[jQuery] Re: Hide/Close div when clicked outside of it.

2008-05-02 Thread Aleksandr
$("#divLoginBox1").show(); >else{ >$("#divLoginBox1").hide(); >} >return false; >}) <-- ADD SEMICOLON HERE > > -- Josh > > - Original Message - > From: "Aleksandr" <

[jQuery] Re: Hide/Close div when clicked outside of it.

2008-05-02 Thread Aleksandr
I am now have this jQuery code and it is working in FireFox, Safari and Opera but not in IE 6, 7: $(document).ready(function(){ $("#link").click(function(){ if ($("#divLoginBox1").is(':hidden')) $("#divLoginBox1").show(); else{ $("#d

[jQuery] Re: Hide/Close div when clicked outside of it.

2008-05-02 Thread Aleksandr
r". Just be sure to set the z-index on > divLoginBox1 higher. > > On May 2, 4:21 am, Aleksandr <[EMAIL PROTECTED]> wrote: > > > I was try to do in this way. But it also close div clicking inside of > > it. > > So, if I click in wrapper area it clos

[jQuery] Re: Hide/Close div when clicked outside of it.

2008-05-02 Thread Aleksandr
t; $("#wrapper').click(function() { $('#divLoginBox1').hide(); }); > > That should do it. You could leave the #wrapper background > transparent or add in some opacity to a background color to emulate a > "faded" effect to the page content. I believe

[jQuery] Re: Hide/Close div when clicked outside of it.

2008-05-01 Thread Aleksandr
how Login Box" you want > to display a div that shows the login box. > > When someone clicks somewhere else on the screen and not on the link > you want to hide the login box? > > On May 1, 5:08 am, Aleksandr <[EMAIL PROTECTED]> wrote: > > > I still have the sa

[jQuery] Re: Hide/Close div when clicked outside of it.

2008-05-01 Thread Aleksandr
t; > This is just off the top of my head but if it donst work you get the > idea. > > On Apr 30, 11:17 am, Aleksandr <[EMAIL PROTECTED]> wrote: > > > Hi All, > > > I am showing a div on click of a hyperlink. Now, when i click > > elsewhere in > >

[jQuery] Hide/Close div when clicked outside of it.

2008-04-30 Thread Aleksandr
Hi All, I am showing a div on click of a hyperlink. Now, when i click elsewhere in the document other than the div itself, then i want to hide the showing div... Is there any easy way to do this? I've already try: $('html').click(function() { $('#divLoginBox1').hide(); }); and $('body').click