basic plugin

by Rich Costello

HTML

<li class='vacation' data-price='399'>
<h3>Hawaiian Vacation</h3>
<button>Show Price</button>
<a href='#' class='not-interested'>Not Interested</a>
</li>

JavaScript

$.fn.priceify = function() {
	console.log('Pricify Called');
  console.log(this);
};

$('vacation').priceify();