JSFiddle - React, Tailwind, and code Playground

by karthick6891

HTML

<a class="component-cta" href="https://www.google.com" data-mobile-href="https://www.wikipedia.org">Circle</a>

JavaScript

function ComponentMobileCta($elm){
	this.$elm = $elm;

	this.desktopHref = this.$elm.attr('href');  
  this.mobileHref = this.$elm.attr('data-mobile-href');
  
  console.log(this)
}
$('a[data-mobile-href]').each(function(){
	new ComponentMobileCta($(this));
});