NOTICE

Adfly Links not working Find Direct Links HERE

Check all checkboxes on check th check box

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.

0 comments :

Feel free to leave comment if you like above widget, have any questions or just say Hi! :)

Resolved!- android - ADB No Devices Found - Adb Devices can't find my phone -

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


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

0 comments :

Feel free to leave comment if you like above widget, have any questions or just say Hi! :)

Tab and Tab+Shift focus on selected div




$(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");


});

0 comments :

Feel free to leave comment if you like above widget, have any questions or just say Hi! :)