3 months, 30% HIKE IN YOUR SALARY or 100% money back – no questions asked
there are lot of things we can pick it up from HTML5 boilerplate. One of the major findings I found from boilerplate is
How to avoid console errors on browsers that lacks console such as IE.
// [...]
3 months, 30% HIKE IN YOUR SALARY or 100% money back – no questions asked
Models are the heart of any JavaScript application, containing the interactive data as well as a large part of the logic surrounding it.
How to create a Model in Backbone.
Now lets look at how to create [...]
3 months, 30% HIKE IN YOUR SALARY or 100% money back – no questions asked
If you are pretty new to backbone.js like me, then you are the right place and If you are wondering how to delete a Model using backbone then
1. Create a Model first
2. Delete it [...]
3 months, 30% HIKE IN YOUR SALARY or 100% money back – no questions asked
I had requirement for that the client that I should mask the SSN. I came up with a small script using javascript to mask SSN digits
Input:123456789
output:***-**-6789
3 months, 30% HIKE IN YOUR SALARY or 100% money back – no questions asked
After dwelling with time for 2-3 hrs finally got the solution for validation not working for dynamically added inputs. Thought of sharing with you guys.
Once u done with the adding the fields dynamically, to get it validated [...]
3 months, 30% HIKE IN YOUR SALARY or 100% money back – no questions asked
While working on infinite scroll. Everything worked fine in firefox and other modern browsers. Whereas I could see I have used $(document).scroll(function(){} to trigger the event.
To fix the above not implemented issue in IE, All we need [...]
3 months, 30% HIKE IN YOUR SALARY or 100% money back – no questions asked
Its pretty simple to parse XML file via Jquery. Here you go…
XML FILE with books
My Cool Book Title The my cool book is possibly 12/1/2010 Another PHP book Learn everything about PHP 4/1/2010 jQuery Techniques jQuery [...]
3 months, 30% HIKE IN YOUR SALARY or 100% money back – no questions asked function mainmenu(){ $(” #nav ul “).css({display: “none”}); // Opera Fix $(‘#nav li’).click(function(){ $(this).find(‘ul:first’).show(); }); } $(document).ready(function(){ mainmenu(); }); First link First link1 First link2 First link1 First link2 First link3 First [...]
3 months, 30% HIKE IN YOUR SALARY or 100% money back – no questions asked
Assume we have header and its bit too long and we need to trim it using jquery. Wondering what to do. below is the code which helps to trim the string using jquery
My big header goes here [...]
3 months, 30% HIKE IN YOUR SALARY or 100% money back – no questions asked
Below is the snippet for redirecting to some URL with some delay using javascript
function delayRedirect(){ window.location = “https://getallfix.com”; } // END DELAY FUNCTION jQuery(document).ready(function(){ setTimeout(‘delayRedirect()’, 5000); });
Hope this is helpful
Latest posts
- bootstrap popover | bootstrap popover hide on click | bootstrap popover hide on document.click
- Avoid console errors in browsers that lack a console | HTML5 boilerplate
- getting started with Sublime editor | how to install zen coding | zen coding for sublime editor
- getting started with backbone | Models in Backbone
- How to delete a model in backbone


