Google Search results not showing up-Collection of common programming errors

Two Three things you need to look at (one related, one two unrelated) from the FireFox error console

(javascript) Error: uncaught exception: Syntax error, unrecognized expression:

Unrelated but still worth correcting:

Warning: Unexpected end of file while searching for selector. Source File: http://www.nu-living.com/ Line: 0

… and:

(parsing) Error: The stylesheet http://www.nu-living.com/css/about.css was not loaded because its MIME type, “text/html”, is not “text/css”. Source File: http://www.nu-living.com/info/search_results/?cx=017425724926122041548%253Avgp5w3d356w&cof=FORID%253A9&ie=UTF-8&q=testing&sa=Search&siteurl=www.nu-living.com%252F Line: 0

Also, is there a good reason you are including jQuery and related Javascript file references in the body of your HTML document?

Update: A problem on your homepage here:


  $('#breaking-news ul').newsticker();
  $('#slideshow').cycle();

You should wrap all jQuery calls in $(document).ready(function() { /* code */ }); to ensure the DOM is ready before you change things – otherwise you’ll hit a Javascript error which may prevent other scripts from running if jQuery hasn’t had a chance to initialize the $ variable.

I would wager that this is what is happening with Google Custom Search – a problem with one of your other scripts is breaking script execution before the search script can run.

You should debug your site to correct these problems – FireBug may help with this task.

Originally posted 2013-11-23 09:50:20.