Using JQuery in Page Extensions

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

Process

  1. Load Setup

  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

    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