[jQuery] Preloading CSS images issue

2009-12-29 Thread Alexandru Adrian Dinulescu
Hello. I have a WP blog found at http://alexdweb.com/blog/, that has more than 1 "theme". Basically when you change the theme via the change theme option in the start menu, some images are loaded. The problem is that those images are pretty big, and i would like them to PRELOAD after the main them

Re: [jQuery] Introduction to jQuery

2009-11-25 Thread Alexandru Adrian Dinulescu
Hmm is it just me or some text is over another parts of text? Other than that, well I was hoping for some text-wall rather than images, most images do not even have a title, so in some images i really dont know whats shown. With a lot of refinement, this could considered to be distributed, but as

Re: [jQuery] Re: Reorder list numerically based on attribute?

2009-11-24 Thread Alexandru Adrian Dinulescu
Thank you very much --- Alexandru Dinulescu Web Developer (X)HTML/CSS Specialist Expert Guarantee Certified Developer XHTML: http://www.expertrating.com/transcript.asp?transcriptid=1879053 CSS : http://www.expertrating.com/transcript.asp?transcriptid=1870619 Odesk Profile: http://w

Re: [jQuery] Reorder list numerically based on attribute?

2009-11-24 Thread Alexandru Adrian Dinulescu
Sorry to highjack this, but Karl could you somehow describe exactly what that function does, my js is pretty rusty but i would like to understand how it works. Thanks --- Alexandru Dinulescu Web Developer (X)HTML/CSS Specialist Expert Guarantee Certified Developer XHTML: http://www

Re: [jQuery] slideToggle lag in Firefox

2009-11-24 Thread Alexandru Adrian Dinulescu
Firefox really eats a lot of memory when it's up for a long time. I also encountered that issue not only in sliding but in animations that move stuff around. Problem is that firebug really makes stuff slower, because it shows you real-time what the browser is doing. The console / net thingy also ea

Re: [jQuery] Close popup (div) when clicked outside the div

2009-11-23 Thread Alexandru Adrian Dinulescu
Hello. I think you could do something like $(".containerdiv:not(.divThatHoldsTheTextboxes)").click(function(){ $(".contaierDiv").css("display", "none");}); this means that if the users clicks anywhere outside the div that holds the boxes the container div will be changed. I am not very pro in JQue

[jQuery] Re: children() passable variables there

2009-07-15 Thread Alexandru Adrian Dinulescu
mes wrote: > > When you say "bogs down" does that mean it works, but very slow? Or > does it mean it doesn't work at all? > How many rows are you working with? > > On Jul 14, 1:31 am, Alexandru Adrian Dinulescu > wrote: > > Hello. > > > >

[jQuery] children() passable variables there

2009-07-14 Thread Alexandru Adrian Dinulescu
Hello. I am trying to do $("tbody tr").each(function(){ $(this).children("td:first").css({ 'border-left': '3px solid #EE', }); $(this).children("td:last").css({ 'border-right': '3px solid #ee', });

[jQuery] [jQuery][Cluetip] Cluetip/live issues

2009-07-13 Thread Alexandru Adrian Dinulescu
Hello. Is there a way to have the elements loaded by cluetip (which is ajax) live(ed). Because i want to put some triggers INSIDE the loaded element itself and based on jQuery docs i ned to use the live function, but i dont know how to use that with the cluetip. --- Alexandru Din

[jQuery] Getting the current page HTML URL via JQuery variable

2009-07-12 Thread Alexandru Adrian Dinulescu
I am trying to get the current page HTML URL (the one at the top in the address box) and place it in a variable. Any help ? --- Alexandru Dinulescu Web Developer (X)HTML/CSS Specialist Expert Guarantee Certified Developer XHTML: http://www.expertrating.com/transcript.asp?transcript

[jQuery] Re: Newbie question

2009-07-02 Thread Alexandru Adrian Dinulescu
or2" and click on > it to see the example > > getting familiar with the jquery website categories of "selectors, > traversing, manipulation etc " is probably the #1 best tool for learning > jquery. > > Alexandru Adrian Dinulescu wrote: > > Hello. &g

[jQuery] Newbie question

2009-07-02 Thread Alexandru Adrian Dinulescu
Hello. I am trying to do something like this $(element1 || element2).click(function(){}) unfortunately this does not work, both element1 and element2 work independently but not together and i have no clue how to get them to work together. Basically what i need that either when element1 is clicke