jquery click on data attribute

Solutions on MaxInterview for jquery click on data attribute by the best coders in the world

showing results for - "jquery click on data attribute"
Lorri
31 Jun 2017
1    $( "[data-spinner]" ).live( "click", function () {
2        console.log('clicked');
3    } );
4