jQuery Retina Display Plugin not working

jQuery Retina Display Plugin not working

I followed the installation instructions but I am not getting any changes on my IOS simulator or my live device (iphone 4S).


I am actually making a responsive version for mobile here, 
My navigation is in a ul, li controlled by css, I don't have an image tags in my html is that why?

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width,initial-scale=1">
  5. <meta name="apple-mobile-web-app-capable" content="yes" >

  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  7.        

  8. <!-- The jQuery library (CDN) -->
  9. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>

  10. <!-- Include the plugin *after* the jQuery library -->
  11. <script type="text/javascript" src="_js/basic-jquery-slider.js"></script>


  12. <script>window.jQuery || document.write('<script src="_js/jquery-1.8.2.min.js"><\/script>')</script>
  13. <script type="text/javascript" src="_js/jquery.retina.js" ></script>

  14. <!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
  15. <script>
  16. var _gaq=[['_setAccount','UA-XXXXX-X'],['_trackPageview']];
  17. (function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
  18. g.src=('https:'==location.protocol?'//ssl':'//www')+'.google-analytics.com/ga.js';
  19. s.parentNode.insertBefore(g,s)}(document,'script'));
  20. </script>

  21. <link rel="stylesheet" href="../stylesheets/basic-jquery-slider.css">

  22. <link rel="stylesheet" href="../stylesheets/normalize.css">
  23. <link rel="stylesheet" href="../stylesheets/fonts.css">

  24. <link rel="stylesheet" href="../stylesheets/main.css" > 
  25. <link rel="stylesheet" href="../stylesheets/iphone.css" /> 



  26. <script type="text/javascript">
  27.         $(document).ready(function() {
  28.             // slider              
  29.             $('#banner').bjqs({
  30.             'animation' : 'slide',
  31.             'width' : 700,
  32.             'height' : 300
  33.             });
  34.             // jquery-retina display plugin
  35.             $('img').retina();

  36.     });
  37. </script>
  38. </head>
  39. <body>


  40. <!--[if lt IE 7]>
  41.     <p class="chromeframe">You are using an outdated browser. <a href="http://browsehappy.com/">Upgrade your browser today</a> or <a href="http://www.google.com/chromeframe/?redirect=true">install Google Chrome Frame</a> to better experience this site.</p>
  42. <![endif]-->         

  43. <header>
  44.     <ul id="mobileTop">
  45.         <a name="mobileTopMenu"></a>
  46.         <li class="smoothScroll"><a href="#mobile" id="home" class="mobile_nav-nav_sprite" ><em>work</em></a></li>
  47.        <li class="smoothScroll"><a href="#mobilefaq" id="faq" class="mobile_nav-nav_sprite"><em>faq</em></a></li>
  48.         <li><a href="mailto:barbara_pav@hotmail.com?subject=Speech-Language Inquiry" id="email" class="mobile_nav-nav_sprite "><em>contact</em></a></li>
  49.     </ul>
  50. </header>


  51. <div id="wrapper">
  52.     <div id="scroll-content">
  53.                 <section id="mobilehomeContent">
  54.                 <a name="mobile"></a>
  55.                 <h2>What is speech therapy?</h2>
  56.                         <p>
  57.                          Keytar seitan next level, bushwick mcsweeney's jean shorts quinoa blog aesthetic forage mlkshk +1 keffiyeh lo-fi ethnic. Fanny pack mcsweeney's tattooed, cred wolf food truck lomo trust fund swag fap. Pop-up flexitarian etsy, before they sold out vice beard ennui brooklyn synth sustainable typewriter.  
  58.                         </p>       
  59.                   </section><!-- homeContent--> 

  60.                 <section id="mobilefaqContent" >
  61.                     <a name="mobilefaq"></a>
  62.                     <h2>Frequently asked questions?</h2>
  63.                         <ul class="mobilefaqlist">
  64.                             <li>When a parent should seek speech therapy?</li>
  65.                             <li>How do I know if my child has delayed speech language skills?</li>
  66.                             <li>How do I know if I should look for a speech-language therapist.</li>
  67.                             <li>Keytar seitan next level, bushwick mcsweeney's jean shorts quinoa?</li>

  68.                         </ul> <!-- faqlist-->      
  69.             </section><!-- faqContent-->  
  70.     </div> <!-- scroll-content-->       
  71. </div> <!-- wrapper-->       

  72. <footer>
  73.     <ul id="mobileBottom">
  74.         <li><a href="http://www.linkedin.com/pub/barbara-pavicevac/2b/56a/434" target="_blank" id="linkedin" class="mobile_nav-nav_sprite"><em>linkedin</em></a></li>
  75.        <li><a href="https://twitter.com/Babspav" target="_blank" id="twitter" class="mobile_nav-nav_sprite"><em>twitter</em></a></li>
  76.         <li><a href="http://www.facebook.com/groups/108100642565490/?fref=ts" target="_blank" id="facebook" class="mobile_nav-nav_sprite"><em>facebook</em></a></li>
  77.     </ul>
  78. </footer>