Scripts

hyves/twitter snellink

Ik heb dit gamaakt voor mensen die snel socialmedialinks op hun site hebben linkedin, facebook, myspace, youtube komt nog dit is nog maar het begin

index.php
[code]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
	<title>Social 1</title>
	<script src="http://code.jquery.com/jquery-1.5.min.js"></script>
	<script type="text/javascript">
	$(document).ready(function() {
		$('a[lang="twitter"]').click(function() {
			var href = $(this).attr('href');
			var name = href.replace("twitter:", "");
			location.href = "http://twitter.com/#!/" + name;
			return false;
		});
		$('a[lang="hyves"]').click(function() {
			var href = $(this).attr('href');
			var name = href.replace("hyves:", "");
			location.href = "http://" + name + ".hyves.nl/";
			return false;
		});
	});
	</script>
</head>
<body>

<a href="twitter:maartenbuis" lang="twitter">Twitter</a>
<a href="hyves:maartennee" lang="hyves">Hyves</a>

</body>
</html>
[/code]

Reacties

0
Nog geen reacties.