Hi,
I am trying to create a smiley box, I tried using a popover to show all the smilies instead of having them right on page.
This is the tag I am currently using to show smilies :
[php][/php]
insertsmiley is the js I am using to insert the smiley to the textbox.
Now I need this to be within a popover, I tried using this :
[php]<span class=“btn btn-inverse btn-sm popover-notitle” data-rel=“popover” data-placement=“bottom” data-content="">Smilies[/php]
And this is the JS to show the popover, I have added the html attribute in here.
$('[data-rel=popover]').popover({html:true});
But this doesn’t work, specifically the insertsmiley function isn’t working… It load the popover just as required but the function isn’t working.
I need help getting this to work correctly, I hope my question is conveyed correctly.
Thanks !