I use the run operation on a container with `id=app`, just like how it is shown in the example: ``` javascript emojify.run(document.getElementById('app')); ``` That doesn't work. But this does: ``` javascript $("#app").html(emojify.replace($("#app").html())); ``` In any case, it would be better if the `.run` method just worked, since I feel there is a larger overhead in the work around.
I use the run operation on a container with
id=app, just like how it is shown in the example:That doesn't work. But this does:
In any case, it would be better if the
.runmethod just worked, since I feel there is a larger overhead in the work around.