Hi All,
We have one application developed in SharePoint 2010 wherein i have assigned some tooltips to few global navigation links / tabs using jquery qtip ; tooltips are showing up but throwing error " Object doesn't support this property or method qtip" on page. I have refernced qtip js file after jquery file. And this code is in masterpage.
Here is my jquery files :
<scripttype="text/javascript"src="/_layouts/ADP.SP.COLLAB.Master/jquery-1.3.2.min.js"></script>
<scripttype="text/javascript"src="/_layouts/ADP.SP.COLLAB.Master/jquery.qtip-1.0.0-rc3.min.js"></script>
Script:
$(document).ready(function () {
$('#Generic_Menu a[href$=="AllSites.aspx"]').qtip({
content: {
text: 'Search for individual sites'
},
nbsp; corner: {
tooltip: 'middleLeft'
}
},
style:
{
border: {
radius: 2
}
},
width: 400,
height: 3,
textAlign: 'left',
show: 'mouseover',
hide: 'mouseout',
name: 'cream'
});
});
Wherein i am checking tabs/links which end's with URL (.aspx pages).
Please help.
Thanks in advance,
Dhanuadpr