[jQuery] Re: "Timers" plugin and IE8 trouble

2009-09-16 Thread Petar
I solved it. It was caching problem, adding random query string does the thing: $('.sidebar').load('getjobs.php?rnd=' + new Date().getTime() );

[jQuery] "Timers" plugin and IE8 trouble

2009-09-07 Thread Petar
bar').everyTime(1000, function() { $('.sidebar').load('getjobs.php'); }); }); Firefox, IE7 and Chrome updates the "sidebar" div every second, but IE8 does not. Any ideas? Petar

[jQuery] [validation]

2009-06-04 Thread Petar
he default one. The method defaultShowErrors does it for all the error elements, I cannot do it per element, so become unusable in my scenario. All ideas are welcome ;) Best regards, Petar

[jQuery] Clickable rotated image

2009-03-07 Thread Petar
I'm dynamically creating several elements which I want to rotate with custom degree, append it to some div, and bind onclick method to them. I tried jquery-rotate and Wilq32.RotateImage, but they don't work like they should - it seems to me that call to rotate function somehow breaks a command ch

[jQuery] Re: Selecting dynamically created elements

2009-02-23 Thread Petar
content > > before you created it (on $(document).ready for example). How and when > > are trying to get the $('img')-selection? > > > On Feb 23, 8:55 pm, Petar wrote: > > > > I'm creating elements dynamically like this: > > > > $('

[jQuery] Selecting dynamically created elements

2009-02-23 Thread Petar
I'm creating elements dynamically like this: $('

[jQuery] Re: Positioning inside div

2009-02-22 Thread Petar
gt; > > Relative means relative to the "normal" position. In this case you > > would have to set negative values for top/left to achieve an > > overlapping. > > > Petar schrieb: > >> I'm trying to create and place several elements inside an empty &g

[jQuery] Positioning inside div

2009-02-22 Thread Petar
0px' } ); $('').appendTo("#myDiv").css( { position: 'relative', left: '30px', top: '30px' } ); $('').appendTo("#myDiv").css( { position: 'relative', left: '50px', top: '50px' } ); but images are detached horizontally, although they should overlap. Vertical positions are OK. Is there a "right way" to accomplish this? Petar