I am using the Tooltipster plugin to display form errors generated by the jQuery Validate plugin, however i cant get it to display error's for select inputs
Asked
Active
Viewed 116 times
0
-
JSFiddle where i found original idea http://jsfiddle.net/2DUX2/ – Frank Williams Nov 19 '15 at 17:32
1 Answers
0
https://gyazo.com/38ee0b71910510fa8a9d16b6c9663510
Solved was just a case of adding ,select after input[type="text"]
// initialize tooltipster on text input elements
$('#details input[type="text"],select').tooltipster({
trigger: 'custom',
onlyOne: false,
position: 'right'
});