under the pictures, the link to this profile link.
here's the code for those that don't care to look (as sent to the browser from the php):
link:
Code: Select all
<li>Link Directly to this profile: <a name="#Neo" href="#Neo" onClick="toClipboard();">http://www.FindYourDesire//findyourdesire/profile.php?un=Neo</a></li>Code: Select all
<script language="javascript">
function toClipboard(){
var text="http://www.FindYourDesire//findyourdesire/profile.php?un=Neo";
var copyText=text.createTextRange();
return confirm("Do you want to copy the link http://www.FindYourDesire//findyourdesire/profile.php?un=Neo to your clipboard?
(this only works for M$IE");
copyText.execCommand("Copy");
alert("If using M$IE, then you have just copied the link, http://www.FindYourDesire//findyourdesire/profile.php?un=Neo to your clipboard.");
}
</script>