Skip to content Skip to sidebar Skip to footer

Var Query Not Returning Required Results

I have a javascript file which is returning results to a HTML page via information entered in a SharePoint list. It works fine, but I've been asked to return another field of multi

Solution 1:

It seems that you have basic html syntax error.

I would start from that.

You are not opening and closing your 'table row' <tr> and 'table data' <td> tags properly. Should be like this:

[...]
<tr>

    <td class="tg-yw4l" colspan="3">
      <h2>Further Information</h2>
      <div id="furtherinfo"></div>
    </td>

    <td class="tg-yw4l" colspan="3">
    </td>

</tr>
</table>

Post a Comment for "Var Query Not Returning Required Results"