Bookmarks for Feb 6th through Feb 7th
These are my links for Feb 6th through Feb 7th:
- Tweet! Put Twitter on your site with this simple, unobtrusive jQuery widget – put twitter on your website with tweet!, an unobtrusive javascript plugin for jquery.
- Slicker Show and Hide » Learning jQuery – Tips, Techniques, Tutorials – Last time I showed you how to make something appear and disappear on a web page. This time I'll show you how to do it with style.
Like we did last time, we'll start with our $(document).ready() and put everything else inside of it.
- Tweet! Put Twitter on your site with this simple, unobtrusive jQuery widget – put twitter on your website with tweet!, an unobtrusive javascript plugin for jquery.
- Slicker Show and Hide » Learning jQuery – Tips, Techniques, Tutorials – Last time I showed you how to make something appear and disappear on a web page. This time I'll show you how to do it with style.
Like we did last time, we'll start with our $(document).ready() and put everything else inside of it.
- Basic Show and Hide » Learning jQuery – Tips, Techniques, Tutorials – As promised in my last entry, I'll be showing you a simple effect that you can do using jQuery: showing or hiding something, or a group of things, on the page. The two functions that let us do this are, not surprisingly, show() and hide().
jQuery also comes with another function called toggle(), which will make matching elements visible if they are hidden or hidden if they are visible.
So, let's get down to business. We're going to start with our $(document).ready() function.