This is attempting to query an RSS feed for a page. RSS feeds are officially deprecated. Some pages still have them grandfathered in, depending on the date the page was created, but you can't rely on them being there, nor can you detect if they are present or not.
This page seems to have a feed - for now, since the URL returns data.
Your error is a syntax error. Take a look at your console to see which line this is coming from. There is no guarantee that the unexpected colon is in the code snippet you posted.
To future proof your script, your best bet is to create an app, and query the page via the Graph API at this URL:
https://graph.facebook.com/111222778066/feed?access_token=YOUR_APP_ACCESS_TOKEN
If you authenticate as an app, you can get a permanent access token. Using the JavaScript SDK will automate this process for you.
These articles should get you started: