1 jQuery Fan Blog for your Daily News, Plugins, Tuts/Tips & Code Snippets.
Following on from jQuery Quiz Questions 1-10 here are questions 11-20. Hopefully you might learn something new about jQuery you didn’t know before. Once more if you find any mistakes please feel free to leave a comment with corrections. Enjoy! Question 11 Which of the...
In this post is a collection of 10 jQuery Responsive Demos you may find very interesting! Help yourself and check them out.. Enjoy! ;) 1. Flexisel The responsive image carousel with options specifically available for adapting the carousel for mobile and tablet devices. Source +...
Video Tutorial Details Name Remy Sharp: Build anything Description Recompilation of running JS without having to restart it. It\’s like Bret Victors talk, when he demo\’s rewriting code ( , for example.rnrnBlack magic, voodoo and David Blaine have nothing on iframes. iframes, for better or...
Some interesting web development stuff was found in February. Here are the finds. Enjoy! =) Also see: JANUARY 2014 Finds DECEMBER 2013 Finds 1. JavaScript.is (Sexy) Learn everything about modern web application development with JavaScript and HTML5. Source + Demo 2. The Web Can Do...
Video Tutorial Details Name Fluent 2014: Aaron Frost & Dave Geddes, “The Goodness of JavaScript” Description Fluent 2014: Aaron Frost & Dave Geddes, “The Goodness of JavaScript” Tags Tech Target Skill Level intermediate Author Profile OreillyMedia Published 2014-03-13 23:21:28
Another set of 10 Random jQuery Plugins for your web development needs! Worth checking out. MitItUp is really cool ;) 1. MixItUp A jQuery filter and sort plugin that works with your layout. Source + Demo 2. DarkTooltip A simple customizable tooltip with confirm option...
Video Tutorial Details Name Frontend Workflows with Grunt and Lineman Description Frontend Workflows with Grunt and Lineman Tags linemanjs Target Skill Level intermediate Author Profile DevOps Live Published 2013-11-20 02:24:37
Video Tutorial Details Name Automating Your Front-end Workflow with Yeoman 1.0 (Addy Osmani) Description Taken from 2013\’a Future of Web Apps – http://futureofwebapps.com – Addy Osmani (Google) joined us to discuss Automating your Front-end Workflow\’. rnrnWriting a modern web app these days can sometimes feel...
In this post is a weekly set of 10 Random jQuery Plugins you may find very useful. Check them out! :) 1. pixelate.js jQuery plugin to pixelate images and, optionally, reveal on hover. SourceDemo 2. Seriously.js A real-time, node-based video effects compositor for the web...
Video Tutorial Details Name Fluent 2014, \”Keynote With Paul Irish\” Description Fluent 2014, \”Keynote With Paul Irish\” Tags Tech Target Skill Level intermediate Author Profile OreillyMedia Published 2014-03-13 23:54:28
In all the noise about social media, people sometimes forget the importance of videos in promoting your business. Facebook, Twitter and Google+ have their roles but YouTube is none the less popular. It usually trends within the top ten websites on Alexa. Pat Flynn of...
This is a good starting point for your next jQuery Plugin. I have created a skeleton example http://jsfiddle.net/jquery4u/kp8bS/ for you to check out on jsfiddle also might be of help to you. jQuery Plugin Template Code /*! jQuery [name] plugin @name jquery.[name].js ...
These plugins are new or have been updated in February 2014. There are some really good ones, ClassyCompare is awesome fun! :) 1. ClassyCompare A jQuery plugin written by Marius Stanciu – Sergiu, a plugin that gives you the ability to compare two images (before...
There will be an interactive jQuery quiz released soon in the members section where you can win prizes. In the meantime, here are a few jQuery questions which didn’t make the quiz but I thought it would be nice to share them with you, might...
Quick Vid of memory leak when enabling iPad emulator on chrome dev tools. Been meaning to post this for a while now. It may have been fixed since sorry about that. Chrome Version Windows 7 64-bit
According to mashable.com, most e-commerce sites don’t succeed in converting more than 1 to 4 percent of their leads. However, top e-stores manage to convert more than 15 percent of those who browse their pages. What is their secret? Can they share it with the...
Just logging some code for getting two jquery mobile form inputs on one line. Should look something like this: HTML <div data-role="fieldcontain" class="halffield ui-field-contain ui-body ui-br"> <span class="label">*First Name:</span> <span class="inlineinput"> <input type='text' class="required ui-input-text ui-body-d ui-corner-none...
Everyone needs to display data on their websites at some point. Whether it’s in the form of tables, graphs, dials, or however you choose, it’s nice to have that data conveyed in a visually exciting way. We can use various jQuery plugins to display our...
Win a 5-year, $900 worth Pro Plan at Timeneye, a time tracking web app (/iOS/Android/WinPhone)! Using a simple interface, you can track the time spent on different projects (and even billable hours) and generate and export complete reports. What makes a time tracking app really...
In this post you will find 5 Angular JS Seeds and Bootstraps Apps you may want to add to your list for future use. Enjoy =) 1. Official Angular Seed This project is an application skeleton for a typical AngularJS web app. You can use...
When you click on open space on the ipad the keyboard the page jumps down screen (to try and compensate for the space the keyboard used). This occurs when it wants to keep the input in view when your typing which makes sense and is...
Sometimes you may want to show the loader and hide as you see fit. I recommend to use the default one instead of adding your own loading image. To show $.mobile.showPageLoadingMsg() To hide $.mobile.hidePageLoadingMsg()
You Might Not Need jQuery! … assuming you’ll address these bugs in your hand-written code: docs.google.com/document/d/1LPaPA30bLUB_publLIMF0RlhdnPx_ePXm7oW02iiT6o/edit# … You Might Not Need jQuery! … assuming you'll address these bugs in your hand-written code: https://t.co/j2hrG2nCpX — Paul Irish (@paul_irish) February 7, 2014 :)
If you own a website, then you need a contact form on it. Yes, you can publish your email address directly on your contact page but usually that’s not a good idea. Publishing an email address on a webpage is a direct invitation for bots...
If your seeing a quick error message popup on the screen when redirecting the page to another (or you might be forcing a reload). Instead of using this: window.location.href = "/"; Use this: $.mobile.changePage('/', { reloadPage: true, transition: "none"} ); or if that doesn’t work...
jquery validation for dob to specific format ie dd-mm-yy $.validator.addMethod("dateFormat", function(value, element) { return value.match(/^\d\d?-\d\d?-\d\d$/); }, "Please enter a date in the format dd-mm-yyyy."); And then on your form add: $('#myForm') .validate({ ...