HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/theflexguy.com/wp-content/themes/vanilla/_custom-widgets/javascript.js
jQuery(document).ready(function(){
	
	jQuery('.rbet_tip').each(function(){
				
				this.parentNode.rbet_tip = this;
				
				jQuery(this).hide();
				
				this.parentNode.onmouseover = function(){
							
						jQuery(this.rbet_tip).show();
						
					};
				this.parentNode.onmouseout = function(){
						
						jQuery(this.rbet_tip).hide();
						
						
					};
				
			}
		);
	
	jQuery('.check-column-controller').each(function(){
			
			jQuery('tr',this.parentNode.parentNode.parentNode.tBodies[0]).each(function(){
					this.style.cursor = 'pointer';
					this.onclick = function(ev) {
						ev = ev || window.event;
						var target = ev.target || ev.srcElement;
						if( !target.type || target.type != 'checkbox' )
							this.firstChild.firstChild.checked = !this.firstChild.firstChild.checked;
						}
					}
				);
			
			this.firstChild.onclick = function(){
				jQuery('.check-column',this.parentNode.parentNode.parentNode.parentNode.tBodies[0]).each(function(){
						this.firstChild.checked = !this.firstChild.checked;
						}
					);
				}
			}
		);
	
	}
);