JSFiddle - React, Tailwind, and code Playground

by michananya

HTML

<span id="text">click me</span>

CSS

#text {
    display: block;
    position: absolute;
}

JavaScript

$(function() {
    $('#text').on('click', function() {
        var val = 1.25;
        $(this).css({
            '-webkit-transform': 'scale(' + val + ')',
            '-moz-transform': 'scale(' + val + ')',
            '-ms-transform': 'scale(' + val + ')',
            '-o-transform': 'scale(' + val + ')',
            'transform': 'scale(' + val + ')'
        });
    });
});