JSFiddle - React, Tailwind, and code Playground

HTML

<h2>Clicker</h2>
<iframe frameborder="0" height="300" id="ask_form" scrolling="no" src="http://www.tumblr.com/ask_form/algorithmer.tumblr.com" width="100%"></iframe>

JavaScript

$('h2').click(function(){
    alert('Clicked h2');
});
$('iframe').click(function(){
    alert('Clicked iframe');
});
$('.button_wrapper').click(function(){
    alert('Clicked ask button');    
});
$('.button_wrapper').bind('click',function(){
    alert('Clicked ask button');    
});