Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I run this script on my page to display a share fb button, I got the following error

TypeError: 'null' is not an object (evaluating '/^[^?#]*//.exec(location.href)[0]')

that stops all following js code to work.

 <script src="//ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function(){
$('#share_button').click(function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'Welcome to African Parks',
link: 'http://www.african-parks.org/?W=007',
picture: 'http://www.african-parks.org/xMedia/Icon/Spacer.gif',
source: 'http://www.african-parks.org/xMedia/Icon/Spacer.gif',
caption: 'African Parks',
description: '<p>&nbsp;</p>',
message: ''
});
});
});
</script>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({appId: '416304825091739', status: true, cookie: true,xfbml: true});
};
(function() {
var e = document.createElement('script'); e.async = true;
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
</script>
<a class="iconSocNet" href="http://www.facebook.com/AfricanParksNetwork" target="_blank"><img src="../xJava/Icon/SocialMedia/facebook-24x24.png" alt="Go To Facebook" title="Go To Facebook" class="iconSocNet" />  </a> 
share|improve this question
Please provide a link to the repro, or a full stack trace. – Sean Kinsey Oct 19 '12 at 18:11
african-parks.org/home.html – Paul Godard Oct 20 '12 at 21:29

closed as too localized by Igy, talonmies, RichardTheKiwi, Ryan, Claus Jørgensen Oct 20 '12 at 1:08

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.