JSFiddle - React, Tailwind, and code Playground

by Laurie

HTML

<table class="ms-formtable" style="margin-top: 8px;" border="0" cellpadding="0" cellspacing="0" width="100%">
    <tr>
        <td valign="top" width="90%" class="ms-formlabel">Image test</td>
    </tr>
    <tr>
        <td valign="top" width="90%" class="ms-formbodysurvey">
            <!-- FieldName="Image test" FieldInternalName="Image_x0020_test" FieldType="SPFieldGridChoice" --> <span dir="none"><table cellpadding="0" cellspacing="1" border="0" height="95%" summary="Rating Scale Question">
                                  <tr>
                                         <td>&#160;</td><td class="ms-verticaldots">&#160;</td><td class="ms-gridCol">Low&#160;</td><td class="ms-gridCol">Average</td><td class="ms-gridCol">&#160;High</td><td class="ms-gridCol">&#160;</td>
                                  </tr><tr>
                                         <td>&#160;</td><td class="ms-verticaldots">&#160;</td><th scope="col" class="ms-gridCol">1</th><th scope="col" class="ms-gridCol">2</th><th scope="col" class="ms-gridCol">3</th><th scope="col" class="ms-gridCol">N/A</th>
                                  </tr><tr>
                                         <td class="ms-sectionline" colspan="100%" height="1"><img alt="" src="/_layouts/images/blank.gif" /></td>
                                  </tr><tr>
                                         <th class="ms-gridT1" scope="row">http://norrspd005:51475/pictest/mysiteupdate.jpg</th><td class="ms-verticaldots">&#160;</td><td align="center"><input id="ctl00_m_g_e6ebe94b_b754_4fc1_8eab_6c4663e5cdef_ctl00_ctl01_ctl00_ctl00_ctl00_ctl04_ctl00_ctl00" type="radio" name="ctl00$m$g_e6ebe94b_b754_4fc1_8eab_6c4663e5cdef$ctl00$ctl01$ctl00$ctl00$ctl00$ctl04$ctl00$RadioButtons:0" value="ctl00" /><script type="text/javascript">document.getElementById('ctl00_m_g_e6ebe94b_b754_4fc1_8eab_6c4663e5cdef_ctl00_ctl01_ctl00_ctl00_ctl00_ctl04_ctl00_ctl00').title='http:\u002f\u002fnorrspd005:51475\u002fpictest\u002fmysiteupdate.jpg Value...

JavaScript

$('.ms-gridT1').each(function () {
    var url = $(this).text();
    var div = '<div><img src="'+url+'"></div>';
    $(this).html(div);
  
    
    });


$('label').each(function () {

var url = $(this).text();
var div = '<div><img src="'+url+'"></div>';
$(this).html(div);




});