Blog

Archive for the jQuery Category


Using the .click() jQuery Method to Hide a Link when Clicked and then Display an Autoplay YouTube Video
Posted on February 19, 2014 in jQuery by Matt Jennings

CSS and HTML

Somewhere in your website include a script tag that points to latest Google jQuery API.

Note: In
Read more…


Manipulate an Element from an Attribute and Value Pair
Posted on January 9, 2012 in jQuery by Matt Jennings

The code below grabs an img tag with a width=”434″ attribute and value pair, goes up to the parent tag
Read more…


jQuery Ready Event
Posted on November 21, 2011 in jQuery by Matt Jennings

The code below runs the jQuery inside the script tags AFTER the DOM is run:

$(document).ready(function(){
// Your code here
});


Create a Simple jQuery Slideshow
Posted on November 12, 2011 in jQuery by Matt Jennings

See http://www.orchinorthodontics.com/ for an example of the slideshow.

The jQuery library must be linked to your website. First follow the
Read more…

To Top ↑