Jappixmini added

This commit is contained in:
Michael 2021-10-07 05:31:02 +00:00
commit 1cc8afc83f
265 changed files with 98516 additions and 0 deletions

View file

@ -0,0 +1,14 @@
$.fn.selectRange = function(start, end) {
return this.each(function() {
if (this.setSelectionRange) {
this.focus();
this.setSelectionRange(start, end);
} else if (this.createTextRange) {
var range = this.createTextRange();
range.collapse(true);
range.moveEnd('character', end);
range.moveStart('character', start);
range.select();
}
});
};