Blogger Plug n Play - jQuery Tools and Widgets View RSS

No description
Hide details



AngularJS basic file structure to use 11 Oct 2015 10:13 AM (9 years ago)

app.js var app = angular.module('mdmApp', ['ngRoute','ngTouch', 'ui.bootstrap','angular-perfect-scrollbar-2']); app.config(function ($routeProvider) { $routeProvider .when('/', { title: 'My Deals', routeName: 'home', slideMenu: false, isSideDisabled: true, controller: 'NGMyDeals', templateUrl: 'html/NG-my-deals.html' }) .when('/advancedSearch/:edit', { title: 'Advanced Search', routeName: 'advancedSearch', slideMenu: true, isSideDisabled: false, controller: 'NGAdvanceSearch', templateUrl: 'html/NG-advance-search.html' }) .when('/createNewScenario', { title: '', routeName: 'createNewScenario', slideMenu: true, isSideDisabled: false, templateUrl: 'html/NG-create-new-scenario.html' }) .when('/advancedSearchResults', { title: 'Search Results', routeName: 'advancedSearchResults', slideMenu: true, isSideDisabled: false, controller: 'NGMyDeals', templateUrl: 'html/NG-search-results.html' }) .when('/login', { title: 'Login As Proxy', routeName: 'login', slideMenu: true, isSideDisabled: false, templateUrl: 'html/login-as-proxy.html' }) .when('/saveSearches', { title: 'Saved Searches', routeName: 'home', slideMenu: true, isSideDisabled: false, templateUrl: 'html/NG-save-searches.html' }) .when('/dealPricing', { title: 'Deal Pricing', routeName: 'dealPricing', slideMenu: true, isSideDisabled: false, templateUrl: 'html/NG-deal-pricing.html' }) .when('/components', { title: 'Components', routeName: 'components', slideMenu: false, isSideDisabled: false, templateUrl: 'html/components.html' }) .otherwise({ redirectTo: '/' }); }); ----------------------------------- controllers.js app.controller('MainController', function ($scope, $http, $location, $modal) { $scope.slideMenu = function () { $scope.slideMenuActive = !$scope.slideMenuActive; }; $scope.radioModel='LPL'; $scope.openChangeAccess = function (size) { var modalInstance = $modal.open({ animation : 'true', templateUrl : 'templates/common/changeAccess.html', controller: 'ModalInstanceCtrl', size : 'md' }); }; $scope.openAddProxy = function (size) { var modalInstance = $modal.open({ animation : 'true', templateUrl : 'templates/common/addProxy.html', controller: 'ModalInstanceCtrl', size : 'lg' }); }; $scope.openQuickLinks = function (size) { var modalInstance = $modal.open({ animation : 'true', templateUrl : 'templates/common/quickLinks.html', controller: 'ModalInstanceCtrl', size : 'lg' }); }; $scope.openDeleteRow = function (size) { var modalInstance = $modal.open({ animation : 'true', templateUrl : 'templates/common/deletePopup.html', controller : 'ModalInstanceCtrl', size : 'sm' }); }; $scope.openAppReq = function (size) { var modalInstance = $modal.open({ animation : 'true', templateUrl : 'templates/myDeals/appRequired.html', controller : 'ModalInstanceCtrl', size : 'lg' }); }; $scope.go = function ( path ) { $location.path( path ); }; $scope.typeAhead = ['Mary Williams (marywill)']; $scope.scrollopts = { wheelSpeed: 1, wheelPropagation: true, minScrollbarLength: 20 }; }); ------------------------------------------- directives.js app.directive('toggleClass', function() { return { restrict: 'A', link: function(scope, element, attrs) { element.bind('click', function() { element.toggleClass(attrs.toggleClass); }); } }; }); app.directive('selectBox', function($timeout) { return { restrict: 'E', replace: true, scope: { selected: '=', array: '=', class: '=' }, template: '', controller: ['$scope', function($scope) { $scope.changeVal = function(v){ $scope.array[0].selectedValue = v; } }] }; });

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Hey! Anony - Anonymous Chat - New Chat Application In Playstore 18 Sep 2014 9:22 AM (10 years ago)


Hey! Anony - Anonymous Chat

Hey! Anony is a Simple Private Chat Application where you can meet people around world without sharing your personal details.
Just register with a Username n Password then post a status n Start Exploring! :))
-Free
-No Ads
-Fast
-Simple



Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

MouseHover and other events not working on Disabled Input in FireFox n Sometimes in Chrome - ( Solution ) 16 Sep 2014 3:20 AM (10 years ago)

We solve this situation by adding a JS function and CSS style. We just add an overlay on disabled input field and Run mouse events on it. See demo below for full code

DEMO

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Create / Join / Search a Number of WhatsApp Groups new Android App 4 Aug 2014 6:38 AM (10 years ago)

Create WhatsApp Groups is a new application on Playstore. It is an innovative app. Here people can Search and Join number of WhatsApp Groups. Not only this you can also create you own Groups.

But only thing is important DONT REMOVE THIS APP FROM YOUR MOBILE if you want request of girls and boys to Join. I think this is not so difficult as this app is very Light in size ( 610KB only ).

How this app Works

1) You make an account by clicking "Sign Up"

2) Then you can Search and Join Groups by clicking on group name then fill Request form.

3) After that Creator of that group will get notification with you name .

4) Then He or She will add in his/her Group.

WEB Application here : http://knockchat.in/cwg/


You can download this App Here


Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Chat with facebook Online Users Android App 16 Mar 2014 8:07 AM (11 years ago)

In this android app you can chat with online facebook users in India...Install Now!

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Check all checkboxes on check th check box 27 Feb 2014 10:27 PM (11 years ago)

two functionalities og Demo

1) check all check boxes in TD on check of check box in TH of table TR
2) If we check all check box manually then check box in TH also get check.

DEMO

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Resolved!- android - ADB No Devices Found - Adb Devices can't find my phone - 22 Feb 2014 11:58 AM (11 years ago)

Simply visit and download below application on your pc then it will detect your device in "adb devices" command

Visit Here

keywords: ADB No Devices Found
 Adb Devices can't find my phone
 Android device is not listed while running adb devices
 How to solve Android adb device not found errors
 How to solve ADB : 'Device Not Found' error in Android

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Tab and Tab+Shift focus on selected div 12 Feb 2014 1:35 AM (11 years ago)




$(document).ready(function() {

lastIndex = 0;
     $(document).keydown(function(e){
        if(e.keyCode==9)
        var thisTab = $(":focus").attr("tabindex");
if(e.keyCode == 9) {
if(e.shiftKey) {
  //Focus previous input
  if(thisTab == startIndex){
$("#"+tabLimitInID).find('[tabindex='+lastIndex+']').focus();
        return false;
        }

}else {
 if(thisTab == lastIndex){
$("#"+tabLimitInID).find('[tabindex='+startIndex+']').focus();
        return false;
        }
}
}

     });      


 var  setTabindexLimit = function(x,fancyID){
console.log(x);
     startIndex = 1;
lastIndex = x;
tabLimitInID = fancyID;
$("#"+tabLimitInID).find('[tabindex='+startIndex+']').focus();
  }

setTabindexLimit(10,"DivWithTabIndex");


});

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Input or js code not working in touch swipe plugin :Solution 6 Dec 2013 9:10 PM (11 years ago)

https://github.com/mattbryson/TouchSwipe-Jquery-Plugin/commit/f226567f5bf8fc2bdbee5ae7dac1fc80e71beda8

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

New Content Slider for Web and Touch screen devices 6 Dec 2013 9:08 PM (11 years ago)

http://owlgraphic.com/owlcarousel/

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

adfly Links On this Blog 6 Dec 2013 9:02 PM (11 years ago)

Adf.ly Export 2013-07-26 08:39 for Account ipsj20@gmail.com (03/06/2012 - 07/25/2013)
LinkDestination URL
http://adf.ly/GU9O9http://free-latest-blogger-templates.blogspot.com/
http://adf.ly/HtnIphttp://fiddle.jshell.net/ipsjolly/T83ke/10/show/?page=55&pagee=66&str=Display
http://adf.ly/GU8Gshttp://jsfiddle.net/ipsjolly/57JTL/
http://adf.ly/IlmTdhttp://mozilla.github.com/pdf.js/web/viewer.html
http://adf.ly/Htz1ohttp://sample333333.blogspot.com/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/08/how-to-get-url-parameter-in-javascript.html
http://adf.ly/GU85jhttp://jsfiddle.net/ipsjolly/WeMyb/
http://adf.ly/GU8Tyhttp://fiddle.jshell.net/ipsjolly/7Nhb3/
http://adf.ly/IlmXFhttps://github.com/mozilla/pdf.js
http://adf.ly/GU9QQhttp://cssglobe.com/lab/easyslider1.7/01.html
http://adf.ly/GU9K3http://jquery-content-slider.blogspot.com/
http://adf.ly/IDq5hhttp://jsfiddle.net/ipsjolly/J5r25/23/
http://adf.ly/GU8nshttp://www.dynamicdrive.com/dynamicindex2/crawler/index.htm
http://adf.ly/HtfDGhttp://goo.gl/ImDRi
http://j.gs/1sDdhttp://jsfiddle.net/ipsjolly/fjaxn/9/
http://adf.ly/---http://free-mail-alerts-on-mobile.blogspot.in/
http://adf.ly/HqMOzhttp://bloggerplugnplay.blogspot.in/2012/11/construction-of-binary-tree-from.html
http://adf.ly/JOXLghttp://jsfiddle.net/GZBDm/2/
http://adf.ly/---http://code-spare-parts.blogspot.in/2011/10/way2sms-direct-send-sms-link-api-send.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/11/construction-of-binary-tree-from.html
http://adf.ly/GU9a1http://image-zoomer-on-click.blogspot.com/2009/10/click-image-below-to-zoom-or-magnify-it.html
http://adf.ly/GU9w4http://info-punch.blogspot.com/
http://adf.ly/GU66Mhttp://www.pantel.in/download/latest%20IS701C%2020120910.zip
http://adf.ly/Hj0nHhttp://jsfiddle.net/ipsjolly/hgdWp/2/
http://adf.ly/GU8gBhttps://addons.mozilla.org/en-US/firefox/addon/user-agent-switcher/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/GU9TIhttp://bloggercrust.blogspot.com/
http://j.gs/1sQshttp://jsfiddle.net/ipsjolly/L7ykY/1/
http://adf.ly/---http://code-spare-parts.blogspot.in/2012/11/design-algorithm-draw-corresponding.html
http://adf.ly/HtzVVhttp://e-singh.blogspot.com/2009/10/how-to-set-up-jquery-tooltip-title-pop.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/05/how-to-force-format-pen-drive-or-memory.html
http://adf.ly/GU6ARhttp://www.pantel.in/download/IS701C%20latest%20software.rar
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/12/bsnl-701c-penta-tablet-3gplay-store-not.html
http://adf.ly/GU8iFhttps://addons.mozilla.org/en-US/firefox/addon/flashgot/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2011/07/horizontal-auto-image-strip.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/11/jquery-image-scroller-with-nextprev.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/HtzDShttp://bloggervolt.blogspot.com/2009/08/jqery-cute-black-sliding-menu.html
http://adf.ly/HIhRGhttp://www.sobolsoft.com/excelmysql/
http://q.gs/3Pcrghttp://bloggerplugnplay.blogspot.in/2013/02/verticle-auto-scroll-news-ticker.html
http://adf.ly/II2qchttp://jsfiddle.net/ipsjolly/pvLwt/27/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/---http://code-spare-parts.blogspot.com/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://code-spare-parts.blogspot.in/2011/10/way2sms-direct-login-link-just-go-to.html
http://adf.ly/Iy3Eehttp://jsfiddle.net/ipsjolly/6caWe/39/
http://adf.ly/GU8sihttp://www.ziddu.com/download/10864514/Oxford%20English%20Dictionary-24662.rar.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2011/07/horizontal-auto-image-strip.html
http://adf.ly/GU970http://auto-switch-tabs.blogspot.com/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/05/how-to-create-force-download-link-for.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2013/02/javascript-pdf-readerviewer-to-embed-in.html
http://adf.ly/---http://code-spare-parts.blogspot.com/2012/11/design-algorithm-draw-corresponding.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2009/11/image-auto-scroller-vertical-in-both.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2011/12/how-to-download-youtube-video-direct-in.html
http://adf.ly/GU9dXhttp://bloggingflu.blogspot.com/2009/10/easy-image-preview-with-jquery.html
http://adf.ly/---http://free-mail-alerts-on-mobile.blogspot.com/
http://adf.ly/ILkhZhttp://jsfiddle.net/fePFt/8/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2013/01/how-to-see-if-element-is-hidden-or.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2011/12/how-to-download-youtube-video-direct-in.html
http://adf.ly/GXMV9https://docs.google.com/open?id=1cX_21kSuJKQhp52FBqZz91_60gh7rDZSO8FPoOSGux3UNzobT_xMb6EoYUXN
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/05/how-to-force-format-pen-drive-or-memory.html
http://adf.ly/GUH7qhttp://bloggerplugnplay.blogspot.in/2012/12/how-to-download-mobile-3gp-format-of.html
http://adf.ly/GU9slhttp://bloggingflu.blogspot.com/2009/10/url-screenshot-preview-with-jquery.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2013/01/lazy-loadscroll-to-load-jquery-tool-for.html
http://adf.ly/Htr4vhttp://jsfiddle.net/ipsjolly/TJG9p/1/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2009/10/auto-verticle-image-sliderstyle-1-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/11/jquery-image-scroller-with-nextprev.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2013/01/how-to-install-iis-on-windows-xp.html
http://adf.ly/HfKdJhttp://www.ziddu.com/download/10848666/zontalImageSliderStyle1UsingjQueryForBloggerBlog.rar.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2009/09/how-to-set-up-jquery-tooltip-title-pop.html
http://adf.ly/GUEXZhttp://video.online-convert.com/convert-to-mp4
http://j.gs/1rY7http://bloggerplugnplay.blogspot.in/2012/11/jquery-image-scroller-with-nextprev.html
http://adf.ly/---http://code-spare-parts.blogspot.in/search/label/Way2sms Direct send sms
http://adf.ly/ID7BFhttp://jsfiddle.net/ipsjolly/rQSDz/18/
http://adf.ly/---http://code-spare-parts.blogspot.in/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://htinnervoice.blogspot.in/
http://adf.ly/HtzShhttp://bloggerplugnplay.blogspot.com/2009/10/how-to-auto-show-full-image-or-original.html
http://adf.ly/HtzLyhttp://bloggerplugnplay.blogspot.com/2011/12/how-to-show-link-title-in-other-local.html
http://adf.ly/Htfyahttp://www.w3schools.com/jquery/jquery_hide_show.asp
http://adf.ly/HfKkFhttp://sample-draggableimage.blogspot.com/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/12/best-tool-for-mysql-database.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/11/jquery-smooth-toggle-with-changing.html
http://adf.ly/GUFhHhttp://en.savefrom.net/
http://adf.ly/J1pwuhttp://jsfiddle.net/ipsjolly/rATW7/290/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/12/bsnl-701c-penta-tablet-3gplay-store-not.html.
http://adf.ly/ILNsLhttp://jsfiddle.net/YHBEE/15/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2009/10/how-to-show-random-or-auto-rotate.html
http://adf.ly/HtzwLhttp://howtozoom.blogspot.com/
http://adf.ly/HtzQKhttp://bloggerplugnplay.blogspot.com/2009/10/show-imagethumbnail-tooltip-popup-on.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/05/how-to-create-force-download-link-for.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/11/jquery-smooth-toggle-with-changing.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/10/auto-verticle-image-sliderstyle-1-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/09/get-direct-link-of-js-file-hosting.html
http://adf.ly/GU8xbhttp://www.110mb.info/secure/go.php?r=15454&i=l0
http://adf.ly/---http://free-mail-alerts-on-mobile.blogspot.in/2009/09/now-get-mail-alerts-on-mobile-all-over.html
http://adf.ly/I9wJRhttp://jsfiddle.net/ipsjolly/mpMHn/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2013/01/validateget-checked-radio-value-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2013/01/tool-to-import-csv-and-xls-to-mysql.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/search/label/BSNL 701c Problem
http://adf.ly/---http://code-spare-parts.blogspot.in/search/label/Way2sms direct login link
http://adf.ly/---http://bloggerplugnplay.blogspot.com.br/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/GU9Ldhttp://testingblogpnp.blogspot.com/
http://adf.ly/GU8uEhttp://www.ziddu.com/download/10864621/Dictionary_v3.0.rar.html
http://adf.ly/---http://htinnervoice.blogspot.in/2013/04/day-to-day-actions-forms-destiny-of.html?utm_source=feedburner&utm_medium=email&utm_campaign=Feed:+InnerVoiceHindustanTimes+(HT+Inner+Voice+Hindustan+Times+Article)
http://adf.ly/---http://code-spare-parts.blogspot.kr/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/search/label/Softwares
http://adf.ly/---http://free-mail-alerts-on-mobile.blogspot.in/2009/07/get-free-orkut-scrap-alert-on-you.html
http://adf.ly/---http://www.ziddu.com/download/11019715/TcpView.rar.html
http://adf.ly/Iv5Rdhttp://jsfiddle.net/ipsjolly/vYcdw/1/
http://adf.ly/---http://bloggerplugnplay.blogspot.com.au/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/Hqy8Yhttp://jsfiddle.net/ipsjolly/k4WWj/
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/11/image-auto-scroller-vertical-in-both.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2010/07/download-oxford-jar-eng-eng-dictionary.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/10/how-to-add-dragable-movable-images-on.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.br/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.uk/2011/07/horizontal-auto-image-strip.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.il/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/GXFeWhttp://codepad.org/eyBiM0Ef
http://adf.ly/GU9B3http://bloggerplugnplay.blogspot.com/2010/07/where-to-upload-java-scriptsrarcss.html
http://adf.ly/PKCeQhttp://jsfiddle.net/ipsjolly/VRz9Z/
http://adf.ly/---http://code-spare-parts.blogspot.com.es/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://code-spare-parts.blogspot.in/2011/09/how-to-connect-your-jsp-page-with-mysql.html
http://adf.ly/---http://code-spare-parts.blogspot.ie/2012/11/design-algorithm-draw-corresponding.html
http://j.gs/1sX0http://bloggerplugnplay.blogspot.in/2009/11/image-auto-scroller-vertical-in-both.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/09/how-to-change-image-opacity-on-hover.html
http://adf.ly/---http://bloggerplugnplay.blogspot.fr/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.uk/2012/05/how-to-create-force-download-link-for.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2013/01/how-to-check-and-uncheck-checkbox-with.html
http://adf.ly/I9bAUhttp://www.umsl.edu/~sauterv/analysis/er/er_intro.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/search/label/Horizontal Slider jQuery
http://adf.ly/---http://bloggerplugnplay.blogspot.com.es/2009/10/floating-vertical-navigation-menu-using.html
http://adf.ly/Htg49http://www.w3schools.com/jquery/eff_toggle.asp
http://adf.ly/---http://bloggerplugnplay.blogspot.de/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/HnMAxhttp://chalaki.com/install-iis6-windows-xp-professional-sp3-setup-run-csharp-cgi/425/
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/---http://bloggerplugnplay.blogspot.it/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/HYfdXhttp://ziplib.com/emu8086/
http://adf.ly/---http://bloggerplugnplay.blogspot.co.il/2011/12/how-to-download-youtube-video-direct-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2009/10/zoom-image-to-original-full-size-on.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ca/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2009/11/auto-switch-horizontal-content-slider.html
http://adf.ly/---http://bloggerplugnplay.blogspot.se/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/11/auto-switch-horizontal-content-slider.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/10/zoom-image-to-original-full-size-on.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/search/label/jQery Widgets
http://adf.ly/---http://bloggerplugnplay.blogspot.com.ar/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.pt/2012/05/how-to-force-format-pen-drive-or-memory.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ro/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/search/label/Download YouTube 3gp Direct
http://adf.ly/---http://code-spare-parts.blogspot.in/
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/08/how-to-get-url-parameter-in-javascript.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/09/smooth-horizontal-slider-jquery-tabs.html?m
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2009/10/black-vertical-sliding-jquery-menu-for.html
http://adf.ly/GU8Kqhttps://chrome.google.com/webstore/detail/cache/bnmfcdcicagaffaokphooddegagehcin?utm_source=chrome-ntp-icon
http://adf.ly/---http://code-spare-parts.blogspot.be/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://code-spare-parts.blogspot.ae/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://code-spare-parts.blogspot.co.at/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://code-spare-parts.blogspot.it/2012/11/design-algorithm-draw-corresponding.html
http://adf.ly/---http://code-spare-parts.blogspot.hk/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://code-spare-parts.blogspot.com.au/2012/11/design-algorithm-draw-corresponding.html
http://adf.ly/---http://free-mail-alerts-on-mobile.blogspot.co.uk/2009/07/get-free-orkut-scrap-alert-on-you.html
http://adf.ly/---http://translate.googleusercontent.com/translate_c?depth=1&hl=zh-CN&prev=/search%3Fq%3Durl_encoded_fmt_stream_map%26start%3D110%26newwindow%3D1%26safe%3Dstrict%26client%3Daff-maxthon-newtab%26hs%3DPDF%26affdom%3Dbaidu.com%26sa%3DN%26channel%3Dt19%26biw%3D
http://adf.ly/---http://free-mail-alerts-on-mobile.blogspot.com/2009/09/now-get-mail-alerts-on-mobile-all-over.html
http://adf.ly/---http://code-spare-parts.blogspot.tw/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://code-spare-parts.blogspot.com/
http://adf.ly/---http://htinnervoice.blogspot.in/2012/04/go-with-flow.html?utm_source=feedburner&utm_medium=email&utm_campaign=Feed:+InnerVoiceHindustanTimes+(HT+Inner+Voice+Hindustan+Times+Article)
http://adf.ly/---http://htinnervoice.blogspot.in/2012/05/dynamic-nature-of-time.html?utm_source=feedburner&utm_medium=email&utm_campaign=Feed:+InnerVoiceHindustanTimes+(HT+Inner+Voice+Hindustan+Times+Article)
http://adf.ly/---http://code-spare-parts.blogspot.co.uk/2012/11/design-algorithm-draw-corresponding.html
http://adf.ly/---http://code-spare-parts.blogspot.co.il/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2013/02/how-to-unlock-zte-mf-190-mf180-mf110.html
http://adf.ly/---http://bloggerplugnplay.blogspot.mx/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/06/jquery-script-to-redirect-or-change-url.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ro/2011/07/horizontal-auto-image-strip.html
http://adf.ly/---http://bloggerplugnplay.blogspot.de/2009/10/how-to-show-random-or-auto-rotate.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.au/2011/12/how-to-download-youtube-video-direct-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.fr/2012/11/jquery-smooth-toggle-with-changing.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2009/10/floating-vertical-navigation-menu-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ro/2011/12/how-to-download-youtube-video-direct-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ca/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.il/2012/05/how-to-create-force-download-link-for.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2013/02/countdown-timer-then-show-download-link.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2013/01/tool-to-import-csv-and-xls-to-mysql.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ru/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ca/2012/08/how-to-get-url-parameter-in-javascript.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2010/08/how-to-see-which-process-or-program-is.html
http://q.gs/3P4AAhttp://bpnp.googlecode.com/files/DC-UNLOCKER.zip
http://adf.ly/---http://bloggerplugnplay.blogspot.hu/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.ar/2012/11/jquery-image-scroller-with-nextprev.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/search?updated-max=2013-01-14T02:09:00-08:00&max-results=19
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/12/best-tool-for-mysql-database.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2013/01/change-image-with-click-on-tabs-or.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.au/2012/08/how-to-get-url-parameter-in-javascript.html
http://adf.ly/---http://htinnervoice.blogspot.in/2012/12/peace-is-directly-proportional-to-human.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ch/2012/05/how-to-create-force-download-link-for.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ro/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/Iisjvhttp://jsfiddle.net/UXxrL/31/
http://adf.ly/---http://bloggerplugnplay.blogspot.com.au/2012/05/how-to-create-force-download-link-for.html
http://adf.ly/---http://bloggerplugnplay.blogspot.hk/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/search/label/Image Slider
http://adf.ly/---http://bloggerplugnplay.blogspot.dk/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/---http://bloggerplugnplay.blogspot.nl/2009/11/image-auto-scroller-vertical-in-both.html
http://adf.ly/---http://bloggerplugnplay.blogspot.jp/2009/10/show-imagethumbnail-tooltip-popup-on.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/search/label/Image Zoom
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/10/floating-vertical-navigation-menu-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.dk/2009/10/floating-vertical-navigation-menu-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.mx/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/search/label/Tickers
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2013/01/in-windows-xp-shows-size-of-files.html
http://adf.ly/---http://bloggerplugnplay.blogspot.jp/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.it/2009/10/auto-verticle-image-sliderstyle-1-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ro/2012/04/add-jquery-stcky-scroll-menu-bar-when.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.uk/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.it/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ru/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.es/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/05/how-to-create-force-download-link-for.html?
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/11/jquery-image-scroller-with-nextprev.html?
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2013/01/how-to-check-and-uncheck-checkbox-with.html?
http://adf.ly/---http://bloggerplugnplay.blogspot.be/2012/08/how-to-get-url-parameter-in-javascript.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ro/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.pt/2012/04/add-jquery-stcky-scroll-menu-bar-when.html
http://adf.ly/---http://bloggerplugnplay.blogspot.gr/2009/10/show-imagethumbnail-tooltip-popup-on.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/10/direct-cut-images-from-your-screen-and.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.uk/2012/04/how-to-sendforward-sms-to-email-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.mx/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/search/label/Softwares
http://adf.ly/Htleuhttp://fiddle.jshell.net/ipsjolly/T83ke/9/show/?page=55&pagee=66&str=Display
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2011/12/how-to-show-link-title-in-other-local.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.uk/2009/11/image-auto-scroller-vertical-in-both.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/12/how-to-download-mobile-3gp-format-of.html
http://adf.ly/---http://bloggerplugnplay.blogspot.kr/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/---http://bloggerplugnplay.blogspot.it/2012/05/how-to-force-format-pen-drive-or-memory.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.uk/2012/11/jquery-image-scroller-with-nextprev.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ca/2009/10/how-to-show-random-or-auto-rotate.html
http://adf.ly/---http://code-spare-parts.blogspot.com/2011/10/yamo-hidden-links.html
http://adf.ly/---http://bloggerplugnplay.blogspot.dk/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.au/2012/05/how-to-force-format-pen-drive-or-memory.html
http://adf.ly/---http://bloggerplugnplay.blogspot.hu/2012/04/add-jquery-stcky-scroll-menu-bar-when.html
http://adf.ly/---http://bloggerplugnplay.blogspot.tw/2009/11/auto-switch-horizontal-content-slider.html
http://adf.ly/---http://bloggerplugnplay.blogspot.nl/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.au/2009/10/show-imagethumbnail-tooltip-popup-on.html
http://adf.ly/---http://bloggerplugnplay.blogspot.pt/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://code-spare-parts.blogspot.gr/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.es/2011/07/horizontal-auto-image-strip.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.es/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/HYesOhttp://fspro.net/my-lockbox/
http://adf.ly/---http://bloggerplugnplay.blogspot.it/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.dk/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.ca/2012/11/jquery-smooth-toggle-with-changing.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/search/label/Blogger Widgets
http://adf.ly/---http://bloggerplugnplay.blogspot.gr/2009/10/how-to-add-dragable-movable-images-on.html
http://adf.ly/---http://bloggerplugnplay.blogspot.de/2011/12/how-to-download-youtube-video-direct-in.html
http://adf.ly/---http://code-spare-parts.blogspot.de/2011/12/how-to-convert-cut-trim-re-size-and.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.es/2012/04/add-jquery-stcky-scroll-menu-bar-when.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/10/black-vertical-sliding-jquery-menu-for.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/04/add-jquery-stcky-scroll-menu-bar-when.html
http://adf.ly/---http://bloggerplugnplay.blogspot.mx/2012/06/jquery-script-to-redirect-or-change-url.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.au/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.hk/2011/07/horizontal-auto-image-strip.html
http://adf.ly/---http://bloggerplugnplay.blogspot.sk/2012/11/jquery-image-scroller-with-nextprev.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.uk/2012/11/jquery-smooth-toggle-with-changing.html
http://adf.ly/---http://bloggerplugnplay.blogspot.gr/2012/11/construction-of-binary-tree-from.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.il/2009/10/auto-verticle-image-sliderstyle-1-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.br/2012/05/how-to-create-force-download-link-for.html
http://adf.ly/---http://bloggerplugnplay.blogspot.de/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/11/construction-of-binary-tree-from.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.uk/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.it/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.pt/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.nz/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/10/view-cached-version-of-webpage-with.html
http://adf.ly/---http://bloggerplugnplay.blogspot.dk/2012/11/jquery-smooth-toggle-with-changing.html
http://adf.ly/---http://bloggerplugnplay.blogspot.it/2009/10/how-to-auto-show-full-image-or-original.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/09/get-direct-link-of-js-file-hosting.html
http://adf.ly/---http://bloggerplugnplay.blogspot.hk/2009/10/verticle-auto-scroll-news-ticker-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/12/write-program-in-c-language-algorithm.html?showComment=1357119968036
http://adf.ly/---http://bloggerplugnplay.blogspot.fr/2009/09/how-to-set-up-jquery-tooltip-title-pop.html
http://adf.ly/---http://bloggerplugnplay.blogspot.tw/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com.br/
http://adf.ly/---http://bloggerplugnplay.blogspot.fr/2009/10/zoom-image-to-original-full-size-on.html
http://adf.ly/---http://bloggerplugnplay.blogspot.fr/2009/10/imagethumbnail-zoom-effect-on-mouse.html
http://adf.ly/---http://bloggerplugnplay.blogspot.pt/2012/04/how-to-call-java-script-function-on.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2012/04/how-to-sendforward-sms-to-email-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.nl/2012/04/add-jquery-stcky-scroll-menu-bar-when.html
http://adf.ly/---http://bloggerplugnplay.blogspot.kr/2012/05/how-to-check-if-file-or-folder-exist-in.html
http://adf.ly/---http://bloggerplugnplay.blogspot.co.at/2011/07/horizontal-auto-image-strip.html
http://adf.ly/GdR2Thttp://www.memotoo.com/
http://adf.ly/---http://bloggerplugnplay.blogspot.nl/2012/01/how-to-open-popup-in-chrome-without.html
http://adf.ly/---http://bloggerplugnplay.blogspot.com/2009/10/drag-to-share-cool-social-widget-for.html
http://adf.ly/---http://bloggerplugnplay.blogspot.gr/2009/10/auto-verticle-image-sliderstyle-1-using.html
http://adf.ly/---http://bloggerplugnplay.blogspot.be/2011/07/horizontal-auto-image-strip.html
http://adf.ly/---http://bloggerplugnplay.blogspot.hu/2012/05/how-to-create-force-download-link-for.html
http://adf.ly/GU98rhttp://www.ziddu.com/download/10849733/chHorizontalContentSliderTabsUsingjQueryForBlogger.rar.html
http://adf.ly/GU8zmhttp://nettuts.s3.amazonaws.com/501_imagegallery/gallery/index.htm
http://adf.ly/---http://bloggerplugnplay.blogspot.in/2012/12/top-free-android-games.html
http://adf.ly/GU815http://www.softoxi.com/ultra-pdf-merger.html
http://adf.ly/J22h1http://jsfiddle.net/ipsjolly/L7ykY/1/
http://adf.ly/J1H8Bhttp://bpnp.googlecode.com/files/DC-UNLOCKER.zip
http://q.gs/3OW3dhttp://www.lavamobiles.com/etab/xtron.html
http://j.gs/1pWDhttps://market.android.com/details?id=com.denper.addonsdetector&feature=related_apps#?t=W251bGwsMSwxLDEwOSwiY29tLmRlbnBlci5hZGRvbnNkZXRlY3RvciJd
http://j.gs/1pWChttps://market.android.com/details?id=com.brosmike.airpushdetector&hl=en
http://j.gs/1pWBhttp://www.pcworld.com/downloads/file/fid,64454-order,4/description.html
http://j.gs/1pW9https://play.google.com/store/apps/details?id=org.adblockplus.android&feature=related_apps
http://j.gs/1pW6https://market.android.com/details?id=com.bigtincan.android.adfree&feature=related_apps#?t=W251bGwsMSwxLDEwOSwiY29tLmJpZ3RpbmNhbi5hbmRyb2lkLmFkZnJlZSJd
http://adf.ly/IHdMfhttps://market.android.com/details?id=com.hexview.android.netspector&hl=en
http://adf.ly/IHdIFhttps://market.android.com/details?id=org.adaway&feature=related_apps#?t=W251bGwsMSwxLDEwOSwib3JnLmFkYXdheSJd
http://adf.ly/I9ZC9https://www.lucidchart.com/
http://adf.ly/I9KeFhttp://creately.com/blog/diagrams/er-diagrams-tutorial/
http://adf.ly/I9JWlhttp://dba.stackexchange.com/questions/29592/conversion-of-statements-to-e-r-diagram
http://adf.ly/HurIOhttp://goodaboutlife.blogspot.com/
http://adf.ly/HurFxhttp://www.hacknol.blogspot.com/
http://adf.ly/HurCThttp://sharktips.blogspot.com/
http://adf.ly/HtjKDhttp://fiddle.jshell.net/ipsjolly/T83ke/5/show/?page=56&pagee=66
http://adf.ly/H8yybhttps://lh5.ggpht.com/qdPD7-OaOLtkTNAEV4lHBlPQt6KmQGUgQHHQl_Y1DgHlZ4Y6xJBI7VKqOPZL4xVAlw=w705
http://adf.ly/H8x97http://www.imageoptimizer.net/Pages/Home.aspx
http://adf.ly/H0Mcwhttp://sourceforge.net/projects/foldersize/
http://adf.ly/GU9hmhttp://www.elliotswan.com/postable/
http://adf.ly/GU9VMhttp://blogger-widgets-templates-tips.blogspot.com/

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

New Star Rating Widget Plugin for Blogger and WordPress 6 Dec 2013 8:57 PM (11 years ago)

http://rating-widget.com/

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Detach() jQuery example 17 Oct 2013 8:48 PM (11 years ago)

Following code showing examples of:

1) Detach() jQuery
2) How to same multiple Detach() from same classes on page and save detached content in an array.
3) Displaying detached content in a div on clicking respective "See More" text.
4) Using :gt which is used to detach all li's greater then index 4.
5) How to use check boxes as a component which can be used multiple times in a page with simple copy/paste without any change in JS code or classes name or anything. 

See Working DEMO Here

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Hide Div on Click Outside jQuery 13 Oct 2013 1:17 AM (11 years ago)

There are two methods using which we can close a div when a user click out side it.

1)Using below code we can close div

See Code

2) Using this method also we can close Div but it also closes the Div when clicked on scroll bar.

See Code

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Textbox Dynamic Word Count, Show remaining words and word count below textbox 4 Aug 2013 8:59 PM (11 years ago)


View Demo

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

How to build long forms using php in a short cut way 31 Jul 2013 3:53 AM (11 years ago)

We can build a long form using php's foreach function in the following way. It makes the form more manageable and clean

<form name="myform" method="get" action="business.php" onsubmit="">
<?php

$postvalue=array("Name"=>"0","Email"=>"1","Phone"=>"2");
foreach($postvalue as $key => $value)
{
  echo ''.$key.'<input type="text" id="id'.$value.'" name="name['.$value.']" value=""><div id="err'.$value.'"></div><br>';
}

?>
<input type="submit" onclick="checkValidit()">
</form>
We can add any number of keys and values in array To get the values we can use following code
<?php
session_start();
$value = $_GET["name"];

foreach ($value as $uni) {
    $_SESSION[$uni] = $uni;
}

foreach ($value as $uni) {
    echo $_SESSION[$uni] . "<br>";
}
?>

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

jQuery Form Validation Email and Phone Number 31 Jul 2013 3:43 AM (11 years ago)

HTML FORM

<form name="myform" method="get" action="business.php" onsubmit="">
Name<input type="text" id="id0" name="name[0]" value=""><div id="err0"></div><br>Email<input type="text" id="id1" name="name[1]" value=""><div id="err1"></div><br>Phone<input type="text" id="id2" name="name[2]" value=""><div id="err2"></div><br><input type="submit" onclick="checkValidit()">
</form>
jQuery Validation Code
<script type="text/javascript">
         function isValidEmailAddress(emailAddress) {
             var pattern = new RegExp(/^([w-.]+@([w-]+.)+[w-]{2,4})?$/);
             return pattern.test(emailAddress);
         };
         
         
         function isValidPhone(phone) {
             var pattern = new RegExp( /^d*[0-9](|.d*[0-9]|,d*[0-9])?$/);
             return pattern.test(phone);
         };
         
         function checkValidit()
         {
             if( !$("input").val() ) {
                 $("form").submit(function (e) {
                     e.preventDefault(); //prevent default form submit
                 });     
             }
         };
         
         
         
         
         $(function(){ 
             
             
             $('input').blur(function()
             {
                 if($(this).attr("id")=="id1")
                 {
                     // alert("email");
                     if( !isValidEmailAddress($(this).val()) ) 
                     {
                         $("#err1").html("Enter Valid Mail");
                     }else if(!$(this).val()){
                         $("#err1").html("Enter Mail");
                     }
                     else{
                         $("#err1").html("");
                     }
                     
                 }
                 else if($(this).attr("id")=="id2")
                 {
                     if( !isValidPhone($(this).val()) ) 
                     {
                         $("#err2").html("Enter Valid Phone");
                     }else if(!$(this).val()){
                         $("#err1").html("Enter Phone");
                     }
                     else{
                         $("#err2").html("");
                     }
                 }
                 else if($(this).attr("id")=="id0")
                 {
                     if( !$(this).val() ) 
                     {
                         $("#err0").html("Enter Name");
                     }
                     else{
                         $("#err0").html("");
                     }
                 }
             });
             
         });   
         
     </script>

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Sector 17 Chandigarh @ Crazy Confessions India 30 Jul 2013 9:44 PM (11 years ago)

Visit Here for Sector 17 Confessions

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Check Net balance in Reliance 3G Datacard 22 May 2013 12:07 AM (11 years ago)

send MBAL to 55333 (toll free)

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Free Web Hosting Websites with your own domains with 99% Uptime 22 May 2013 12:05 AM (11 years ago)

1) FreeWebHostingArea.com  PHP,Mysql Support

2) 000WebHost. PHP,Mysql Support

3) Award Space

4) 1FreeHosting

5) 2FreeHosting

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

PhpMyAdmin default password 21 May 2013 8:38 PM (11 years ago)

go to file

C:\wamp\www\phpMyAdmin-4.0.1-all-languages\libraries\config.default.php 

Search $cfg['Servers'][$i]['AllowNoPassword'] = false;

and change it to "true"

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Form Validation Using jQuery and Showing A single Alert for Validation 20 May 2013 9:08 PM (11 years ago)

In This Form We are Using Following Form Elements:

Input Text
Radio
Check
Select

Validation is done using pure jQuery


View Demo

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

Get Multiple Url Parameters with Same Name Using PHP 11 Apr 2013 12:10 AM (12 years ago)

index.php?paraname=VALUE1&paraname=VALUE2&paraname=VALUE3&paraname=VALUE4
Now if we get paraname parameter as follow $val = $_REQUEST['paraname']; // Output only last value VALUE4 we can bind all parameters in an array by doing a change in the form from where the values are coming like as follow

<form action="" method="get">
<input name="paraname[]">
<input name="paraname[]">
<input name="paraname[]">
<input name="paraname[]">
</form>

Then we can request the values as
<php

$val = $_REQUEST['paraname'];


foreach ($val as &$Mvalue) {
     
  echo $Mvalue."<br>"; 
 }
?>

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

How to disable warnings and notices in php.ini and WAMP 4 Apr 2013 3:18 AM (12 years ago)

open php.ini Search "error_reporting = E_ALL" and Replace it with "error_reporting = E_ALL & ~E_NOTICE & ~E_WARNING" .After saving restart the WAMP 

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?

How to hide or remove div using Escape key from keyboard using JavaScript and jQuery 5 Mar 2013 10:20 PM (12 years ago)

Using JavaScript


<script type="text/javascript">
 window.onkeyup = function (event) {
  if (event.keyCode == 27) {
    document.getElementById(boxid).style.visibility="hidden";
  // window.close();
  }
 }
</script>


Using jQuery


$( document ).on( 'click', function ( e ) {
    if ( $( e.target ).closest( elem ).length === 0 ) {
        $( elem ).hide();
    }
});
$( document ).on( 'keydown', function ( e ) {
    if ( e.keyCode === 27 ) { // ESC
        $( elem ).hide();
    }
});

Add post to Blinklist Add post to Blogmarks Add post to del.icio.us Digg this! Add post to My Web 2.0 Add post to Newsvine Add post to Reddit Add post to Simpy Who's linking to this post?