treehouse : what would you like to learn today?
Web Design Web Development iOS Development

von

  • jQuery Word Clock proof of concept

    I just realized that my function to adjust the font-size is breaking in IE and the clock's words never show up. any ideas? // Resize the text up to 100px to fit in window: function sizeclock(){ $(\"#clock\").stop().…
    Comment by von January 2010 permalink
  • Certificate Creator

    Thanks a lot! Two big advantages to doing this in jQuery and HTML is I don't have to worry about the platform they use it on, and they have concerns about student names on the internet, so I wanted to handle it all client side.
    Comment by von November 2009 permalink
  • jQuery Slider Clock - Proof of Concept

    thanks for the positive feedback. i made a sprite version too, but am too lazy to replace the existing one!
    Comment by von November 2009 permalink
  • jQuery Slider Clock - Proof of Concept

    thanks Chris, it was a lot of fun to make!
    Comment by von October 2009 permalink
  • Sprite menu crossfade

    Mike, these might be what you're looking for. http://www.alistapart.com/articles/sprites2 http://snook.ca/archives/javascript/jquery-bg-image-animations/ von
    Comment by von August 2009 permalink
  • Valentine's Day html Wallpaper

    Thanks Tom!
    Comment by von August 2009 permalink
  • A Flashlight jQuery Page

    David Walsh ported this to MooTools http://davidwalsh.name/mootools-flashlight
    Comment by von August 2009 permalink
  • jQuery opacity help

    It sounds like something else is running before your opacity event when the page loads. If you have various $(document).ready(function(){... calls in multiple scripts could one of them could slow down the execution of another?
    Comment by von August 2009 permalink
  • Dropdown Menu hiding behind photo banner

    I think something else that's important to remember that when z-index is not defined, "what's on top" is based on the order of objects within the code. Like the deck of cards illustration, you put out your first card and if you …
    Comment by von August 2009 permalink
  • Internet explorer not loading JS

    When I checked the site in IE I got the following error. Webpage error details Message: Unknown runtime error Line: 710 Char: 10 Code: 0 URI: http://imperativedesign.net/js/rssReplay.js
    Comment by von August 2009 permalink
  • How come return false prevent redirection of link ?Urgent

    Do you have any reason not to do a hover over to get the sub-menu to appear? If not, I would suggest that. Then you could still make the click event on the original menu item go where intended without any fancy script.
    Comment by von August 2009 permalink
  • Fancy jQuery Clock (IE Fail)

    Thanks Justin, I left out the doctype in haste when I started writing the page, and the text-align was a holdover from early on I forgot to get rid of. That seems to have fixed the layout issues, at least with IE8, but the script is still behaving …
    Comment by von August 2009 permalink
  • jQuery opacity help

    I believe if you specify timing it might fix things. Add ", 0" after you animate selector. $(document).ready(function(){ $('#nav span').animate({ \"opacity\" : 0 }, 0); It tells the animate to occur immediately…
    Comment by von August 2009 permalink
  • A Flashlight jQuery Page

    Thanks Chris and Matt!!! @Soap: It's ridiculously fun and simultaneously useless isn't it?
    Comment by von August 2009 permalink
  • ftp vs sftp

    in short, FTP is "in the clear" so every character you type is sent across the internet completely readable. So should someone be inline of your traffic they could easily read your user name and password. sFTP is encrypted. And yes, goo…
    Comment by von February 2009 permalink
  • jQuery: Passing argument to functions

    Is it tacky to answer my own question? So, it looks like I needed a couple of "s to get the job done. Say I want to pass a color and two positions to a function I would do like so colorTheme(\"#f00\", \"-100px\", \"-…
    Comment by von January 2009 permalink
  • Sticky Footer Vs. Background Center

    I think Chris dealt with this once on the script&style page. http://scriptandstyle.com/centering-a-body-background-image-that-behaves A ways down in the comments there are these two jewels of information from LPent: The reason this works is e…
    Comment by von January 2009 permalink