Title: Responsive Menu
Last modified: September 3, 2016

---

# Responsive Menu

 *  Resolved [yukikatayamadesigns](https://wordpress.org/support/users/yukikatayamadesigns/)
 * (@yukikatayamadesigns)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/responsive-menu-2/)
 * Hi,
 * In the Theme Options, I selected button menu under Responsive Menu, however the
   responsive hamburger menu on my iPhone nor my computer (when I shrink the window)
   does not do anything/is not “active”.
 * Any solutions to fixing it would be greatly appreciated!
    Y

Viewing 4 replies - 1 through 4 (of 4 total)

 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/responsive-menu-2/#post-8135397)
 * Can you please post a link to your site so we can examine it?
    -  This reply was modified 9 years, 9 months ago by [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/).
 *  Thread Starter [yukikatayamadesigns](https://wordpress.org/support/users/yukikatayamadesigns/)
 * (@yukikatayamadesigns)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/responsive-menu-2/#post-8136016)
 * Hi, yes: [http://rebeccajohnsontherapy.com/](http://rebeccajohnsontherapy.com/)
 *  [CrouchingBruin](https://wordpress.org/support/users/crouchingbruin/)
 * (@crouchingbruin)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/responsive-menu-2/#post-8136790)
 * The problem is that your site isn’t loading the jquery code from the jquery site.
   I’m not sure if you have some plugin that tries to do this, but that’s not the
   way the default Fruitful theme works.
 * To give you a more detailed explanation, do a _view source_ on the site’s front
   page. Do a search on the word _jquery_. The first line you will see is at line
   23, which looks like this:
 *     ```
       <link rel='dns-prefetch' href='//code.jquery.com'>
       ```
   
 * This link tells the browser to get the address of the jquery site ahead of time
   so when it comes time to retrieve something from that site, it will know where
   to go.
 * If you repeat the search a couple of times, you’ll see this at line 62:
 *     ```
       <script type='text/javascript' src='/jquery-1.11.3.min.js?ver=1.11.3'></script>
       ```
   
 * This line brings in the jquery code. The problem is that the _src_ attribute 
   uses a relative location, i.e., because the _src_ attribute starts with a single
   slash, it’s trying to find the jquery file at the same address as the site:
 *     ```
       http://rebeccajohnsontherapy.com/jquery-1.11.3.min.js
       ```
   
 * However, it should be looking at the address specified in the prefetch link above:
 *     ```
       //code.jquery.com/jquery-1.11.3.min.js
       ```
   
 * If you know how to use [Chrome Dev Tools](https://developers.google.com/chrome-developer-tools/),
   you can inspect the site, look in the Console tab, and confirm that the jQuery
   file isn’t being loaded.
 * As far as how to fix it, I don’t know why the jquery DNS is being prefetched 
   on your site because it’s not happening on my test site with Fruitful active.
   On my site, and I think with most WP sites, the jquery file is just pulled in
   from one of the WordPress folders, like this:
 *     ```
       <script type='text/javascript' src='http://example.com/wp-includes/js/jquery/jquery.js?ver=1.12.4'></script>
       ```
   
 * I would first try deactivating all of your plugins and see if that fixes it. 
   If it does, then try reactivating your plugins one by one until you find the 
   offending plugin.
 *  Thread Starter [yukikatayamadesigns](https://wordpress.org/support/users/yukikatayamadesigns/)
 * (@yukikatayamadesigns)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/responsive-menu-2/#post-8149689)
 * Thanks for the advise on deactivating/reactivating plugins. It was the WP Google
   Maps plugin that was causing the problem. Thanks 🙂

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Responsive Menu’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/fruitful/3.8.2/screenshot.png)
 * Fruitful
 * [Support Threads](https://wordpress.org/support/theme/fruitful/)
 * [Active Topics](https://wordpress.org/support/theme/fruitful/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/fruitful/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/fruitful/reviews/)

## Tags

 * [fruitful](https://wordpress.org/support/topic-tag/fruitful/)

 * 4 replies
 * 2 participants
 * Last reply from: [yukikatayamadesigns](https://wordpress.org/support/users/yukikatayamadesigns/)
 * Last activity: [9 years, 9 months ago](https://wordpress.org/support/topic/responsive-menu-2/#post-8149689)
 * Status: resolved