[jQuery] Page items shifting during load

2009-09-08 Thread Dan B.
Hi All, I'm assuming everyone here has noticed that when using various jQuery widgets that after the the page shifts as the animation initialization code executes. Usually this is imperfection is perceived when $ (document).ready fires and the handler that kicks off some widget fires. IE. you

[jQuery] each on a css class

2009-02-20 Thread Dan B.
so i have a class positiveMessage I use throughout the page and i always want to fade them (FAT style). I'm starting to catch, but I can't figure out why this only fades the first one! $('.positiveMessage').each( function(){$(this).vkfade(00dd00)} ); Shouldn't this find every

[jQuery] Re: each on a css class

2009-02-20 Thread Dan B.
is assigned to, it's hard to tell what's wrong. What happens if you replace: $(this).vkfade(00dd00) with: $(this).hide(); ? do they all hide as expected? On Feb 20, 2:38 pm, Dan B. dan.baugh...@gmail.com wrote: so i have a class positiveMessage I use throughout the page and i always want

[jQuery] datepicker css

2009-01-22 Thread Dan B.
For some reason I am dying trying to get a datepicker setup with some decent CSS. Functionally, my datepicker is fine...it's just lacking the presentation the demonstrations always seem to have. I use the theme roller to download any of the gallery ones and then include the ui.datepicker.css in

[jQuery] Re: datepicker css

2009-01-22 Thread Dan B.
update: if I use the 300 kilobyte js generated by the theme roller that basically includes all UI elements the styling is appearing fine. So I just need a themed download for the datepicker, not every UI component ever made. DAn On Jan 22, 3:12 pm, Dan B. dan.baugh...@gmail.com wrote

[jQuery] find expression and removing from the page

2008-11-07 Thread Dan B.
So lets say I have this simple HTML structure someonwheres in my document: ul id=bigul li id=placeholder some text /li /ul and I want to remove the place holder. I guess I'm trying something like this: $find(#bigul#placeholder).remove(); Is that some what on the right track?

[jQuery] placeholder - treeview

2008-11-06 Thread Dan B.
Hello, I'm using treeview to browse a bunch of categorized items. I'm using the async tree. However I want one of the first level items to start expanded. My solution was to alter the source to display that level using the children node. However, when I set that expanded: true, there is this

[jQuery] Tabs with multiple CSS classes

2008-09-25 Thread Dan B.
Hi Folks, I'm interested in having multiple instances of tabs on a page/pages throughout a site and on the same page without using an iFrame. The tabs function is cool. I'd like to pass it a different base class, so that basically I have tab controls of different styles on the same page.