Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
js-track-focus
Advanced tools
Check if the Child-Elements on any Parent have focus and aply CSS-Class on the Element
##Usage
#####HTML
<nav class="js-track-focus" id="track">
<a href="#">Menu</a>
<a href="#">Menu</a>
<a href="#">Menu</a>
<div class="js-track-focus" data-focus="subnav-has-focus">
<a href="#">Menu</a>
<a href="#">Menu</a>
<a href="#">Menu</a>
</div>
</nav>
#####JS
$( function(){
$(document).trigger("enhance");
});
// or
var elem = document.getElementById('#track');
var trackfcs = new window.componentNamespace.TrackFocus( elem, {
focusClass: 'ui-state-hightlight'
});
// init
trackfcs.init();
// destroy
trackfcs.destroy();
##Events
####create
Fired once the Plugin is initialized.
$( document ).on( "create.track-focus", function( e ){
// your code
} );
####focus-in
Fired when a child element has focus.
$( document ).on( "focus-in.track-focus", function( e ){
// child element has focus
} );
####focus-out
Fired when a child element loses focus.
$( document ).on( "focus-out.track-focus", function( e ){
// child element loses focus
} );
####destroy
Fired once the Plugin is destroyed.
$( document ).on( "destroy.track-focus", function( e ){
// ...
} );
####Package managers
bower install js-track-focus --save
npm install js-track-focus
####CDN
<script src="https://npmcdn.com/js-track-focus@1.0/track-focus.js"></script>
v1.0.0
: Initial release.Licensed under the MIT license.
FAQs
Check if the Child-Elements on any Parent have focus
We found that js-track-focus demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.