Back to Top
The nuts and bolts for
Creative web development

Relevant Dropdowns: Polyfill for Datalist

The list attribute / datalist element of HTML5 forms is pretty cool. As you type in a text input, it shows you a dropdown menu of choices you can pick from. Or you can type in whatever you want. The list attribute alone doesn't lock you into any specific value. In that way, it's a bit like a group of radio buttons with an "other" type-in option.

December 5, 2011 Author: Daniela Vaseva Rating: Not enough votes

10 Awesome jQuery Snippets

jQuery gave a new life to JavaScript coding. Thanks to this great tool, it is now possible to build powerful and responsive web pages. In this article, you can find 10 jQuery snippets that will definitely help you in your daily client-side coding.

November 28, 2011 Author: Daniela Vaseva Rating: Not enough votes

Circular Element with Hover Effect

In this tutorial we’ll create a plugin that will take care of the ‘mouseenter’, ‘mouseleave’ and ‘click’ events to be triggered only on the circular shape of the element and not its bounding box. With these steps we'll fix any problems with applying a :hover pseudo-class to an element widely known as the classic “hovering” over an element on a web page.
November 25, 2011 Author: Daniela Vaseva Rating: Not enough votes

Getting Started With jQuery

Javascriptis one of a web designer’s best friends. Learning how to use this powerful tool to its fullest potential can prove invaluable to our work and our clients. jQuery helps make JS more accessible.jQuery is a free, fast, and concise JavaScript library that allows you to efficiently write cross-browser javascript code to make Ajax requests, animate elements, manipulate the DOM, and do a variety of user interface manipulations.

November 17, 2011 Author: Daniela Vaseva Rating: Not enough votes

Dig into Dojo: DOM Basics

Dojo is officially called the Dojo Toolkit. This is actually very fitting. Most other collections of lines of JavaScript available bill themselves as frameworks or libraries. A framework is a more or less end-to-end solution for building good web applications, and a library is a collection of tools that assist you with a few specific (usually related) tasks. Dojo fits into both categories, and then some. It’s got all the DOM manipulation, events and animation helpers, and AJAX functions that you’d get with a library like jQuery. But there’s more, much more.

November 17, 2011 Author: Lubov Cholakova Rating: Not enough votes

Coding Web Apps with jQuery Mobile

In this guide the author introduces to you the jQuery Mobile platform. There is a lot of material to cover so we likely won’t hit everything. But fortunately the team has made development super easy and streamlined with fantastic documentation.

November 11, 2011 Author: Daniela Vaseva Rating: Not enough votes

How to Scrape Web Pages with Node.js and jQuery

In this tutorial, we will scrape the YouTube home page, get all the regular sized thumbnails from the page as well as links and video duration time, send all those elements to a jQueryMobile template, and play the videos using YouTube embed (which does a nice job of detecting device media support (flash/html5-video).

October 31, 2011 Author: Lubov Cholakova Rating: Not enough votes

Triggering CSS3 Transitions With JavaScript

At the beginning of this month I wrote a post accompanied by five demo pages that showed that CSS3 transitions could be triggered with a number of different events/states in CSS. That alone should help you see how these types of simple animations work. But let’s take this a bit further.
September 6, 2011 Author: Rob Nijkamp Rating: Not enough votes

Circular Content Carousel with jQuery

Today we want to share a simple circular content carousel with you. The idea is to have some content boxes that we can slide infinitely (circular). When clicking on the “more” link, the respective item moves to the left and a content area will slide out. Now we can navigate through the carousel where each step will reveal the next or previous content box with its expanded content. Clicking on the closing cross will slide the expanded content area back in and animate the item to its original position.

August 17, 2011 Author: Lubov Cholakova Rating: Not enough votes

Portfolio Image Navigation with jQuery

Today we want to create a portfolio image navigation template with jQuery. The idea is to show some portfolio items in a grouped fashion and navigate through them in all 2D ways (horizontal/vertical). Either the arrows or the little boxes below the current image can be used in order to navigate.

August 10, 2011 Author: Lubov Cholakova Rating: Not enough votes