Loading JQuery before AngularJS

Hello guys,

I’m having problems loading jquery before angularjs in my ionic app.I’m doing this in order to prevent angular from using jqlite instead of jquery.I have tried multiple JQuery versions including 1.1.1 and 2.x.x(which I understood is not supported by angular) and no succes so far.

Index.html

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
    <title></title>
    <!-- compiled css output -->
    <link href="css/ionic.app.css" rel="stylesheet">
    <!-- ionic/angularjs js -->
    <script src="https://code.jquery.com/jquery-1.9.1.js"></script>
    <script src="lib/ionic/js/ionic.bundle.js"></script>
    <!-- cordova script (this will be a 404 during development) -->
    <script src="cordova.js"></script>

    <!-- your app's js -->
    <script src="js/app.js"></script>
    <script src="js/controllers.js"></script>
    <script src="js/directives.js"></script>

This is the error I’m getting

TypeError: undefined is not a function
    at eval (eval at <anonymous> (https://code.jquery.com/jquery-1.9.1.js:603:22), <anonymous>:2:17)
    at eval (native)
    at https://code.jquery.com/jquery-1.9.1.js:603:22
    at Function.jQuery.extend.globalEval (https://code.jquery.com/jquery-1.9.1.js:604:7)
    at jQuery.fn.extend.domManip (https://code.jquery.com/jquery-1.9.1.js:6187:16)
    at jQuery.fn.extend.append (https://code.jquery.com/jquery-1.9.1.js:5949:15)
    at IonicModule.controller.self.appendViewElement (http://localhost:8100/lib/ionic/js/ionic.bundle.js:47351:14)
    at Object.IonicModule.factory.ionicViewSwitcher.create.switcher.render (http://localhost:8100/lib/ionic/js/ionic.bundle.js:45614:41)
    at Object.IonicModule.factory.ionicViewSwitcher.create.switcher.init (http://localhost:8100/lib/ionic/js/ionic.bundle.js:45534:20)
    at IonicModule.controller.self.render (http://localhost:8100/lib/ionic/js/ionic.bundle.js:47231:14)