Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author codepeople

    (@codepeople)

    Hi,

    There are some issues in your form, for example, you have entered as the equation associated to a calculated field the piece of code:

    <script type = javascript/text>
    jQuery(document).ready(function () {
    
    lastItem = jQuery('#fieldname71_1').last();
    newItem = jQuery(lastItem.clone(true));
    
        jQuery(".btn1").click(function () {
            jQuery(newItem.insertAfter(lastItem));
        });
    });
    </script>

    but it is not an equation, furthermore, the equations are evaluated each time the fields in the equations are modified, so, you’re associating many onclick events to the element with “.btn1” class assigned.

    Best regards.

    Thread Starter rymanacevedo

    (@rymanacevedo)

    YOU sir are a scholar and a gentleman! Your advice worked, thank you soooo much.

    Ryan

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘jQuery noconflict issue’ is closed to new replies.