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().…
-
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.
-
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!
-
jQuery Slider Clock - Proof of Concept
thanks Chris, it was a lot of fun to make!
-
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
-
A Flashlight jQuery Page
David Walsh ported this to MooTools http://davidwalsh.name/mootools-flashlight
-
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?
-
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 …
-
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
-
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.
-
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 …
-
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…
-
A Flashlight jQuery Page
Thanks Chris and Matt!!! @Soap: It's ridiculously fun and simultaneously useless isn't it?
-
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…
-
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\", \"-…
-
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…