Tagged Questions

3
votes
2answers
709 views

How to use jQuery AJAX in ASP.net master page?

I have an ASP.net web application with a master page. In the menu bar of my master page, there is a search function where a user types in a query and clicks a button. When the button is clicked, the ...
2
votes
7answers
233 views

problem with masterpage and jquery

I have a MasterPage that inside its content section I added a FORM element. When accessing that page, all my controls are renamed since the FORM is runat=server. And thus when selecting in jquery, ...
1
vote
2answers
78 views

Refer Jquery in ASP.Net master page

I am using the Jquery library, and I understand the suggested approach is to reference it at the bottom of web page, within the <body> tag & not withing the <head> tag. But when using ...
1
vote
2answers
89 views

Access content page elements from jquery

I am trying to access the value of a textbox and Hidden field from jquery. I am getting value as undefined. These controls are inside the content page of my master page. <input ...
1
vote
4answers
126 views

Asp.Net MasterPage and JQuery

I have a jqueryscript that works with asp.net pages without masterpages. When the page gets an reference to a masterpage the script stop working. The masterpage: Within the header: <script ...
0
votes
2answers
170 views

Change Master Page Content without loading page multiple times

I have Master and Content Page.The Layout is like Header and Footer are in Master page and rest contents are in content/child page. Now I want to change the header and footer of master page ...
0
votes
4answers
131 views

How do I make jquery work in asp.net mvc

I have read the books, I have googled it to death, but I still get no results. I have an MVC application, and i put the reference to jquery into the master page, as well as the registering the ...
0
votes
1answer
312 views

jQuery CSS change reverting back to original!

I have setup some tabbed navigation on my ASP.NET Masterpage. It is pretty basic: <div id="nav_tabs"> <div id="home" class="tab selected_tab "><a href="Default.aspx" ...
0
votes
2answers
2k views

JQuery UI not working with Master Pages

I've successfully made JQuery work with Master Pages, but not JQuery UI.My header in the master page looks like this: <head runat="server"> <title>Analytics</title> <link ...
0
votes
1answer
238 views

Basic JavaScript alert not showing

I've got an aspx masterpage and want to include Google's jQuery script. However, to test it's working, I've got the below code in the head of my masterpage. However, none of the content pages display ...
0
votes
4answers
505 views

How to run jquery script if html page is the home page…?

I'm working with an external team with our website and they recently added one of my scripts to the .NET MasterPage of the site... well it did finally get my script running but now... it loads Banners ...