????JFIF??x?x????'
| Server IP : 172.67.174.47 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/thread-self/./cwd/wp-content/plugins/motopress-content-editor/jquery/dom/within/ |
Upload File : |
/**
* @add jQuery.fn
*/
steal('jquery/dom').then(function($){
var withinBox = function(x, y, left, top, width, height ){
return (y >= top &&
y < top + height &&
x >= left &&
x < left + width);
}
/**
* @function within
* @parent dom
* @plugin jquery/dom/within
*
* Returns the elements are within the position.
*
* // get all elements that touch 200x200.
* $('*').within(200, 200);
*
* @param {Number} left the position from the left of the page
* @param {Number} top the position from the top of the page
* @param {Boolean} [useOffsetCache] cache the dimensions and offset of the elements.
* @return {jQuery} a jQuery collection of elements whos area
* overlaps the element position.
*/
$.fn.within= function(left, top, useOffsetCache) {
var ret = []
this.each(function(){
var q = jQuery(this);
if (this == document.documentElement) {
return ret.push(this);
}
var offset = useOffsetCache ?
jQuery.data(this,"offsetCache") || jQuery.data(this,"offsetCache", q.offset()) :
q.offset();
var res = withinBox(left, top, offset.left, offset.top,
this.offsetWidth, this.offsetHeight );
if (res) {
ret.push(this);
}
});
return this.pushStack( jQuery.unique( ret ), "within", left+","+top );
}
/**
* @function withinBox
* @parent jQuery.fn.within
* returns if elements are within the box
* @param {Object} left
* @param {Object} top
* @param {Object} width
* @param {Object} height
* @param {Object} cache
*/
$.fn.withinBox = function(left, top, width, height, cache){
var ret = []
this.each(function(){
var q = jQuery(this);
if(this == document.documentElement) return this.ret.push(this);
var offset = cache ?
jQuery.data(this,"offset") ||
jQuery.data(this,"offset", q.offset()) :
q.offset();
var ew = q.width(), eh = q.height();
res = !( (offset.top > top+height) || (offset.top +eh < top) || (offset.left > left+width ) || (offset.left+ew < left));
if(res)
ret.push(this);
});
return this.pushStack( jQuery.unique( ret ), "withinBox", jQuery.makeArray(arguments).join(",") );
}
})