Currently, I am incorporating Xoxco's tag input plugin which can be found at the following link:
In my customization, I have implemented JQuery's focus()
function
<input id="tags_1" class="tag-holder" type="text" class="tags" /></p>
<div id="std" style="display:none;">
<span id='pdf' onmouseover="" style="cursor: pointer;">PDF</span>
<p id="reset" onmouseover="" style="cursor: pointer;">Reset Tags</p>
</div>
This is the JQuery code for my implementation:
$('#tags_1').focus(function(){
$('#std').css('display','block');
});
However, this functionality does not seem to cooperate when integrated with my version of the plugin. It works fine on its own without the plugin. Can someone spot what might be missing here?