<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.5.js'></script>
<script type='text/javascript'>
$(window).load(function(){
console.log($('a:not([href^="callto"])').length);
});
</script>
</head>
<body>
<a href="http://www.google.com">Google</a>
<a href="callto://01234123123">Skype Link</a>
</body>
</html>