Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
2 Posted Topics
The problem is that you are trying to get the variable "this" of the function $(document).ready(function(){ and not $('div.portal_entry.smalldetails'). A more correct version is: [code] <script> $(document).ready(function(){ var el = $('div.portal_entry.smalldetails'); el.qtip({ content: { url: '/Scripts/ajax/portal_qtip.php', data: { id: el.attr('id') }, method: 'get' } }); }); </script> [/code]
what is this script for if I may ask. because I'm searching the same type of script I think.
The End.
shedokan