JSFiddle - React, Tailwind, and code Playground

by ibrahima yock

HTML

<dt>Matière:</dt>
<dd>
	<a id="topic" href="#" data-type="select" data-defaultValue="1"> 
    </a>
</dd>

JavaScript

$(document).ready(function() {
 		$.fn.editable.defaults.mode = 'inline';
 	    $('#topic').editable({      
 	    	  type: 'text',
 	    	  defaultValue: 'vide',
            source:[
                    {value:3,text:'Low'},
                    {value:2,text:'Medium'},
                    {value:1,text:'High'},
                    ]
		});