
/* - check_title.js - */
(function ($){
  $(document).ready(function(){
   
    $("div#archetypes-fieldname-title input").load(function () {
          this.setAttribute("maxlength", "52");
        }).load();

  });

  var check_title = function(event_type) {
    $("div#archetypes-fieldname-description textarea")[event_type](function () {
        var max = 156;
        var node = this;
        if(node.value.length > max) {
            node.value = node.value.substring(0, max);
            alert('Massimo valore consentito! Se devi inserire più di 150 caratteri disabilita javascript dal tuo browser.')
            }
        });
  }


       $(document).ready(function () {(function(event_type) {check_title(event_type)})('keyup')});

       $(document).ready(function () {(function(event_type) {check_title(event_type)})('click')});

})(jQuery);




