5 excellent android apps to learn jQuery
In this post, find a list of 5 excellent and free android apps to learn jQuery on the go. These apps are having detailed documentation with examples and covers most of the things.You may also...
View Article10 jQuery Plugins to make select box/list awesome
Do you feel that HTML select box style is boring, not eye-catching and looks old? If yes, then find a complied list of 10 awesome and free jQuery plugins which will turn your select list or box or...
View ArticleNew version of jQuery - jQuery 3.0
Yesterday, jQuery team has announced that jQuery new version will be called 3.0 and it is around the corner for release. We will be updating you with what's new with jQuery 3.0. Below is excerpt from...
View ArticleHow to remove all inline styles using jQuery?
Inline styles are not recommended and it also create problem while managing the site. Here is a one liner jQuery solution to remove all inline styles from the page.$("*...
View ArticleProblem: javascript setTimeout executes function immediately
JavaScript has setTimeout() method which calls a function or evaluates an expression after a specified number of milliseconds. See below code,setTimeout(function(){alert("Hello")}, 3000); Above code...
View ArticleDifferent ways of bootstrapping AngularJS
AngularJSis neat and superheroic JavaScript MVW (Model View Whatever) Framework which allows to extend HTML capabilities with Directives, expression, two way binding. In this post, we will see...
View ArticleLatest AngularJS interview questions - Part 1
Last year we published Latest jQuery interview questions and answers and thank you for your overwhelming response. And now we have come up with latest AngularJS interview question. These interview...
View ArticleLatest AngularJS interview questions - Part 2
With continuation of AngularJS interview question series, after Part 1, here is list of 2nd set of 10 AngularJS interview questions and their answers. These interview questions covers mainly...
View ArticleLatest AngularJS interview questions - Part 3
With continuation of AngularJS interview question series, after Part 1 and Part 2, here is list of 3rd set of 10 AngularJS interview questions and their answers. Latest AngularJS interview questions -...
View ArticleLatest AngularJS interview questions - Part 4
With continuation of AngularJS interview question series, after Part-1, Part-2 and Part-3, here is list of 4th set of 10 AngularJS interview questions and their answers. Latest AngularJS interview...
View ArticleUse console.group for better JavaScript debugging
For debugging JavaScript/jQuery code, the easiest and preferred way is to use console.log() to output a message in web console. But it works fine when you have small amount of logging message. But...
View ArticleDefine multiple Angular apps in one page
Recently in my previous post, I have posted about Different ways of bootstrapping AngularJS app, where you can either auto-bootstrap using ng-app attribute or manually bootstrap using angular.bootstrap...
View ArticleWe Have Just Revamped Our Website!
Welcome to our new revamped website. We were working very hard from last couple of weeks to get this major redesign implemented. And here we are today with new fast, attractive, responsive and easy to...
View ArticleQuick summary of AngularJS utility functions
Here is a quick and short summary of mostly used AngularJS utility functions. These short summary will be quick help you to find out desired function.angular.bootstrap - To manually start up angular...
View Article4 Free ebooks to learn AngularJS
EBooks are your best friends and it is the most preferred way to learn anything, and it is no different with AngularJS. Here is a list of 4 free best ebooks which helps you to learn AngularJS with fun...
View Article12 Best Tutorials To Learn AngularJS
Are you thinking about learning AngularJS and don't know where to start? Recently, I had posted about 4 Free ebooks to learn AngularJS and if you don't want to read those long books to start, here is a...
View Article10 jQuery image crop plugins for your next project
In this post, find a compiled list of 10 best jQuery image crop or resize plugins. All these plugins present very useful and beautiful interface to crop the image. Some of these plugins also support...
View Article10 Free jQuery Social Sharing Plugins
Social medium has become necessity for any website to grow and connect with readers. So here is collection of free jQuery social sharing plugins which allows you to easily create share button, follow...
View ArticleHow to Limit Number of Characters in Textarea using jQuery
Find jQuery code to limit characters inside textarea control. Below code also handles copy + paste and on drop event.$(function () { var nMaxLength = 150; $("#txtDesc").keydown(function (event) {...
View ArticlejQuery code to share content on whatsapp
In this short post, find jQuery code to share any content on whatsapp. The code first checks for mobile device and if it's a mobile device then it just creates whatsapp URL with user defined text and...
View Article