help : "Uncaught TypeError: $(...).swipe is not a function"

help : "Uncaught TypeError: $(...).swipe is not a function"

<!-- below is my script for side bar -->

<script type="text/javascript">
      $(document).ready(function() {
  $("[data-toggle]").click(function() {
    var toggle_el = $(this).data("toggle");
    $(toggle_el).toggleClass("open-sidebar");
  });
});

/* mistake in swipe area */ 
$(".swipe-area").swipe({
    swipeStatus:function(event, phase, direction, distance, duration, fingers)
        {
            if (phase=="move" && direction =="right") {
                 $(".container").addClass("open-sidebar");
                 return false;
            }
            if (phase=="move" && direction =="left") {
                 $(".container").removeClass("open-sidebar");
                 return false;
            }
        }
});
</script>

It works very well and I would like to use it.
However I am getting an error : 

"Uncaught TypeError: $(...).swipe is not a function"

it does not affect the operation.
Can I get revise ?
I am using :
<script type="text/javascript" src=" http://code.jquery.com/jquery-1.9.1.js"></script>
Thank you for your help.