Created
June 15, 2016 02:21
-
-
Save unalbatuhan/15e2bcca5d50396ad64bbc42d724aa53 to your computer and use it in GitHub Desktop.
jQuery'yi bilgisayarınıza indirmek istemiyorsanız onu CDN (Content Delivery Network) yoluyla da kullanabilirsiniz. Hem Microsoft hem de Google, jQuery için host (barındırma) hizmeti verdiklerinden onların sitelerinden faydalanabilirsiniz:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en" xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta charset="utf-8" /> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> | |
<title></title> | |
<script> | |
$(document).ready(function () { | |
$("#buton").click(function () { | |
$("p").hide(); | |
}); | |
}); | |
</script> | |
</head> | |
<body> | |
<h2>CDN ILE ERISIM</h2> | |
<p>Ornek 1</p> | |
<p>Tıklarsan kaybolur</p> | |
<button id="buton">TIKLA</button> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment