JSFiddle - React, Tailwind, and code Playground

by phoenix_suresh

HTML

<ol>
<li>Make sure you are using jquerify Bookmarklet</li>
<li>Then use JJ no conflit like "var JJ= jQuery.noConflict();"</li>
<li>Then use JJ instead of $ for jquery</li>
</ol>
<div>$</div>

JavaScript

var JJ= jQuery.noConflict(); 
JJ("*").contents().each(function() {
    if(this.nodeType == 3)
        this.nodeValue = this.nodeValue.replace("$", "₹");
});