ArchivesPosts Tagged ‘JQuery’

10Dec

JQuery is often used in websites to manipulate the CSS attributes of an HTML element upon the users request. For example, if a user wants to increase the size of the font immediately so that they can read your page, or you may just want to change up the CSS on the fly to make your page stand out a little more. All these things can be done in JQuery using the css() function and css manipulation techniques. Let’s get started by creating a basic page with a link and a paragraph with some links in it like so…Continue Reading

31Oct

Often when writing JQuery code(especially for plugins) there are times when you need to execute the same block of code multiple times. Instead of writing them all out individually and making our code really terrible process wise, we can use functions and function calls to call the same block of code over and over.Continue Reading

29Oct

Welcome to JQuery part 2, using basic animation techniques. You should already have a basic understanding of JQuery and it’s elements to complete this tutorial. If you don’t, please refer to my JQuery Introduction post found here. Now to get started…Continue Reading

28Oct

JQuery is a javascript library that simplifies javascript’s interaction with HTML to speed up javascript coding. Benefits of JQuery – Lightweight Footprint – CSS3 Compliant – Cross-Browser compatibility What you will need – Javascript enabled browser – JQuery Library – An application to code in(Coda, Aptana, or even notepad) Starting out To start out coding Continue Reading