I’m using jQuery Validate plugin and store Error messages in title, e.g.:
<input type="text" name="email" class="required email" title="Bad email format" />
I don’t want the title text “Bad email format” to be shown upon hover. How can I disable this function (if it’s possible)?
Try to use
rel="Bad email format"insted title or html data attributes likedata-errorMssg="Bad email format"if you cant use them here is an extracted code to hide the title// in document ready function call the JQ function with correct selectors.
$(“input”).hide_my_tooltips();