Javascript String escapeForJQuerySelector()

Description

Javascript String escapeForJQuerySelector()

// Adcionando metodo em String para escapar caracteres 
// especiais para os seletores do JQuery
String.prototype.escapeForJQuerySelector = function () {
   try {//from w  ww .j a va  2  s.  c o m
      return this.
         replace(/([#$%&'()*+,./:;<=>?@\[\]\\^`{|}~])/g, '\\\\$1');
   } catch (error) {
      console.warn(error.message);
      return this
   }
}



PreviousNext

Related