Raw HTML Control

评论

1 条评论

  • Avatar
    Shane Gilbert

    You should be able to with jQuery. If you set an id on the Raw html control or if you have div's or span's inside it put id's on those then you can write JavaScript code that uses jQuery to manipulate the html. You do have to make sure to add your code into the eFormEvents.onFormLoadComplete event so that it executes after everything on the page is fully loaded.

    HTML
    <div id="firstRow"></div>

    JavaScript

    eFormEvents.onFormLoadComplete = function () {

        $('#firstRow').htm("<p>Some html here</p>");

    }

    0
    评论操作 固定链接

请先登录再写评论。