JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script src="https://raw.github.com/jackmoore/colorbox/master/jquery.colorbox-min.js"></script>


<h1>With jquery 1.8.3: Try to click the image below</h1>
<svg width="640" height="480" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" id="colorbox">
 <!-- Created with SVG-edit - http://svg-edit.googlecode.com/ -->
 <g>
  <image...

JavaScript

// inspired from http://jsfiddle.net/dmethvin/7nsMG/1/

$('svg#colorbox image').live('click', function(evt) {
    //alert("Hi!");
    $.colorbox({html:this});
});