JSFiddle - React, Tailwind, and code Playground

by Adam Kinnucane

HTML

<div class="wrapper" data-youtube-autoplay="once">

</div>

JavaScript

class GoDirection {
    constructor( config ) {
        this.dont_go = config.$el.data("youtube-autoplay");
		  this.alertMessage();
    }
	 
	 alertMessage () {
	 alert(this.dont_go);
	 }
}



$('.wrapper').each( function( idx, el ){
   new GoDirection( { $el: $( el ) } );
});