Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<script type="text/javascript">
    AJS.$(document).ready(function() {
      AJS.$('#idiv[id="i_pager_button_f"]').hide();
    });
</script> 
Warning

Important note: i_pager_button_f is a dynamic value and consist of static prefix ("i_pager_button_") followed by the name of the ConfiForms form. In this example the form name is "f"

...

Code Block
<script type="text/javascript">
    AJS.$(document).ready(function() {
      AJS.$('#idiv[id="i_pager_button_f"]').remove();
    });
</script> 

...