i write the first program and its working when i use internal jquery script but when i use as external its not working please help me the page code is below
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="jquery-1.11.1-uncompress.js" type="text/javascript"></script>
<script src="myscript.js"></script>
</head>
<body>
<p> This is a test line</p>
<!-- <script>
$(document).ready(function() {
$("p").hide(2000).show(2000).hide(2000).show(2000).hide(2000).show(2000).hide(2000).show(2000).hide(2000).show(2000);
});
</script> -->
</body>
</html>