I have some experience with JavaScript, but I am a complete noob when it comes to jQuery. Basically I'm trying to add a real simple click event handler to return the time. I'm not receiving any errors in the console but nothing happens when the button is clicked (I added the console.log purely for testing purposes). I imported the entire bootstrap package through nuget, so I believe I have the complete jQuery library. Is there something else I'm missing? Thanks in advance!
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="jQuery.aspx.cs" Inherits="garrettPenfieldUnit10.WebForm2" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder" runat="server">
<h1>jQuery Page</h1>
<p><asp:Label ID="LabelJQ" runat="server" Text="Click the Button!"></asp:Label></P>
<asp:Button ID="ButtonJQ" runat="server" Text="Update the Time!"/>
<script src="Scripts/jquery-1.9.1.js"></script>
<script type="text/javascript">
$('#ButtonJQ').click(function () {
var d = new Date();
document.getElementById(LabelJQ).innerHTML = d.toLocaleTimeString();
console.log('wubba lubba dub dub!');
});
</script>
</asp:Content>