Posts
 
Reputation
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
~11.8K People Reached
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for BluMess

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]

Member Avatar for Moshe_2
0
12K
Member Avatar for priddysharp

what is this script for if I may ask. because I'm searching the same type of script I think.

Member Avatar for shedokan
0
97

The End.