Versions Compared

Key

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

Here is a sample page extension making use of Jquery 1.4.2 minified.

Process

  1. Load the Load Setup tab

  2. Click Page Extensions

  3. Click on Add

  4. Enter a Name

  5. Enter the Page that should be affected (i.e. ticket/add)

  6. Enter the following sample script

    Code Block
    languagejs
    var ticketTitle = jQuery("input").filter(function(index) {return (this.id == 'Ticket.Title')});
    var ticketComment = jQuery("textarea").filter(function(index) {return (this.id == 'Comment')});
    ticketTitle.attr('value', 'Title jQuery Test');
    ticketComment.attr('value', 'Comment jQuery Comment');
  7. Click Save