﻿//
// enquiry form client functions
//
var enquiryForm = {
  //
  // initialise the enquiry form
  //
  initialise: function () {
    //
    // hook up a click handler for the submit button
    $('input.ButtonEnquire[type=submit]').unbind().click(function () {
      // reset the message
      $('div#commentsmessage').text('');
      // get the input and the encoded version.
      var text = $('textarea.ContactEnquiryTextbox').val();
      var encoded = $('<div />').text(text).html();
      // compare
      if (text != encoded) {
        // values are not equal so must therefore contain markup
        $('div#commentsmessage').text('You cannot enter any HTML code in your comments. If you are trying to enter a link, just type the web-site address e.g. www.example.com');
        return false;
      }
    });
  }
}


