Basically, if I import jquery as it follows:
<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
I happen to observe two different scenarios:
If I use my Django Template, I can no longer scroll down the page in the mousepad, but only with the scrollbar. If I delete the line in which I import jquery, I can scroll down again!
If I decide to view the source code generated from the template, copy and paste it entirely into a new html file, if I open it in my browser, now I can scroll down with my mousepad/arrows.
What on Earth can be such reason for that? What am I missing out?
My base.html template goes more as it follows:
{% load staticfiles %}
<!-- html code -->
<body>
{% block content %}
{% endblock %}
</body>
</html>