I am have just implmented Qtip2 speech bubble tipes on an image area map. Using an ajax call I am getting user information from a PHP back end.
http://craigsworks.com/projects/qtip2/demos/#tips
Currently the PHP backend is hardcoded and I am applying the exact same information to every tool tip.
I am stuck on trying to figure out how to get the id given to each area marking and use that to send through the ajax call of Qtip2 to get an individual data feed for that location.
From what I can see the ajax call sends a data strig inside the qtip function.
data: { ID: 3 }, // Data to pass along with your request
What I need to is take the 3 value and instead have the ID vlaye for each area marking:
I treid to do something like this to try and say, for the given div get the id but that doesn't seem to work:
data: { ID: $(this) }, // Data to pass along with your request
Is there a way around this so I don't have to write an indivudal function for every single Area Id?
QTip2:
$(document).ready(function()
{ // We'll target all AREA elements with alt tags (Don't target the map element!!!) $('area[id]').qtip( { content: { text: 'Loading...', // Loading text... ajax: { url: 'scripts/qtip2_ajax_getuser.php', // URL to the JSON script type: 'POST', // POST or GET data: { ID: 3 }, // Data to pass along with your request dataType: 'json', // Tell it we're retrieving JSON success: function(data, status) { /* Process the retrieved JSON object * Retrieve a specific attribute from our parsed * JSON string and set the tooltip content. */ //var content = 'My name is ' + data.person.firstName; var content = 'TEST: ' + data.TEST + 'UID: ' + data.UID + 'FirstName: ' + data.FirstName + 'LastName: ' + data.LastName + 'Team: ' + data.Team + '';
//content += 'LastName:'data.Name;
// Now we set the content manually (required!)
this.set('content.text', content);
}
},
title: { text: 'Status: Taken',
button: false
}
},
show: { event: 'click'
},
hide: { fixed: true, delay: 1000 //event: 'click'
}
});
});
HTML:
<map name="map1" id="map1">
<area id="01-001" shape="circle" coords="99,71,10" href="#" alt="" />
<area id="01-002"shape="circle" coords="129,126,10" href="#" alt="" />
PHP Back END:
<?php
$ID=htmlspecialchars(trim(stripslashes($_POST['ID'])));
//Set the session for the results $UID = "22"; $FirstName = "Sam"; $LastName = "Jackson"; $Team = "Opps"; $TEST = $ID;
//Create Return Array echo json_encode(array("UID"=>$UID, "FirstName"=>$FirstName,"LastName"=>$LastName,"Team"=>$Team,"TEST"=>$ID));
?>
Thanks Guys.