why i can't include library with Ionic-Angular App

why i can't include library with Ionic-Angular App

Hello, 

I'm developping an app with ionic - Angular and I wanted to make the dragging service with jquery UI but it didn't work enven with basic examples, this is my code: 
  1. <head>
  2.   <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  3.   <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"></script>
  4.   <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  5.   <script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.4/jspdf.debug.js"></script>

  6.   <script type='text/javascript'>
  7.       $(function() {
  8.         $( "#device.id" ).draggable();
  9.       });
  10.     </script>
  11. </head>
  12. <body>
  13.   <ion-view view-title="{{vm.title}}" class="exlhoist-dashboard-view">

  14.   <ion-content
  15.     has-bouncing="true"
  16.     padding="true"
  17.     scroll="true">
  18.     
    <div id="draggable" class="ui-widget-content">
    <p>Drag me around</p>
    </div>
  19. </ion-content>

  20. </ion-view>

  21. </body>