Hi
I am trying to implement FancyInput to multi line fields but with no luck so far. I have added External CSS and JS and they seem to be at the right place in final html but it just doesn't seem to work. This is what i am doing.
$(document).ready(function () {
$('head').append('<link rel="stylesheet" href="http://yaireo.github.io/fancyInput/styles.css" type="text/css" />');
$('head').append('<link rel="stylesheet" href="http://yaireo.github.io/fancyInput/fancyInput.css" type="text/css" />');
var script = document.createElement('script');
script.src = "http://yaireo.github.io/fancyInput/fancyInput.js";
document.getElementsByTagName('head')[0].appendChild(script);
$('.feedback-text').fancyInput();
})
Please let me know how i could make it work.
Thanks in Advance
Junaid Inam