JSFiddle - React, Tailwind, and code Playground
by Riccal
HTML
<script src="http://www.ampedupdesigns.com/js/jquery-live-preview.js"></script>
<a href="http://www.bing.com" target="_blank" class="livepreview">Hover over to preview, click to link!</a>
<br />
<button class="clickpreview">Preview</button>
JavaScript
$(document).ready(function () {
$('.clickpreview').on('click', function (e) {
$('.livepreview').trigger('mouseover'); });
$(".livepreview").livePreview({
viewWidth: 400,
viewHeight: 300
});
});