I have a web content form whose master page is a nested master page. I want to put JQuery code in this page, but it is not accepting the Script tags. In this page, I only have:
<asp:Content ContentPlaceHolderID="MainContent">
</asp:Content>
I also want the the JQuery code to fire through my ASP button click as opposed to the traditional HTML button. Will it recognize ASP button click event?
Edited: It is still not working. I tried the suggestions as given below. I did following changes in my code:
Master Page:
<head runat="server">
<link rel="Stylesheet" type="text/css" href="Styles/main.css" runat="server" />
<link id="Link1" rel="Stylesheet" href="Styles/selectCompany.css" type="text/css" runat="server" />
<link type="text/css" href="AJAX/jqueryUI/css/ui-lightness/jquery-ui-1.8.12.custom.css" rel="Stylesheet" />
<script type="text/javascript" src="AJAX/jqueryUI/js/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="AJAX/jqueryUI/js/jquery-ui-1.8.12.custom.min.js"></script>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
</head>
Changes in content form:
<asp:Content ContentPlaceHolderID="head" runat="server">
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$(this).attr('id').match('btnNew2').click(function() {
alert("Hello world!");
});
});
</script>
</asp:Content>
<asp:Content ID="Content1" ContentPlaceHolderID="MasterContentArea" runat="server">
<div id="divHeadings" runat="server" class="TopBar">NEW COMPANY</div>
<div id="divEntryForm" runat="server" class="CompanyEntryForm">
<asp:Button ID="btnNew2" runat="server" Text="New"
CssClass="BtnStyle" />
</div>
Edited
I made the changes as suggested by @Akram and @pumkin, still the JQuery code is not responding to any events. I have updated Master Page code above.
Someone suggested me to use FireBug to identify the actual ID name of the control. Though FireBug I detected the ID of one of the controls to be:
ctl00_MasterContentArea_btnNew2
I replaced the JQuery code with the changes as below, but it is still not showing the alert box:
Code in the Web Content Form
<asp:Content ContentPlaceHolderID="head" runat="server">
<script type="text/javascript" language="javascript">
$(document).ready(function()
{
$('input[id*=\'ctl00_MasterContentArea_btnNew2\']').val().click(function()
{
alert("Hello world!");
});
});
</script>
</asp:Content>
It is simply not recognizing the Click or any other Events. I guess the control is not reaching the above code area.