I open My Editform.aspx page with SharePoint Designer and I want to add javascript code to it. This is the code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#a").click(function(){
$("#content").hide();
});
$("#b").click(function(){
$("#content").show();
});
});
</script>
How can I add and place it to one SharePoint page?