Tagged Questions
738
votes
30answers
215k views
How to format a JSON date?
I'm taking my first crack at Ajax with jQuery. I'm getting my data onto my page, but I'm having some trouble with the JSON data that is returned for Date data types. Basically, I'm getting a string ...
237
votes
12answers
392k views
Change the selected value of a drop-down list with jQuery
I have a drop-down list with known values. What I'm trying to do is set the drop down list to a particular value that I know exists using jQuery. Using regular JavaScript, I would do something like:
...
227
votes
13answers
75k views
jQuery $(document).ready and UpdatePanels?
I'm using jQuery to wire up some mouseover effects on elements that are inside an UpdatePanel. The events are bound in $(document).ready . For example:
$(function() {
...
177
votes
18answers
104k views
jQuery UI Dialog with ASP.NET button postback
I have a jQuery UI Dialog working great on my ASP.NET page:
jQuery(function() {
jQuery("#dialog").dialog({
draggable: true,
resizable: true,
show: 'Transfer',
...
152
votes
8answers
63k views
Can I set an unlimited length for maxJsonLength in web.config?
I am using the autocomplete feature of jQuery. When I try to retrieve the list of more then 17000 records (each won't have more than 10 char length), it's exceeding the length and throws the error:
...
90
votes
7answers
90k views
JQuery validate: How to add a rule for regular expression validation?
I am new to JQuery and am using the JQuery validation plugin. Great stuff!
I want to migrate my existing ASP.NET solution to use JQuery instead of the ASP.NET validators. I am missing a replacement ...
83
votes
7answers
18k views
Unexpected Caching of AJAX results in IE8
I'm having a serious issue with Internet Explorer caching results from a JQuery Ajax request.
I have header on my web page that gets updated every time a user navigates to a new page. Once the page ...
81
votes
4answers
32k views
Request format is unrecognized for URL unexpectedly ending in
This is not a question - posting it here for reference:
When consuming a WebService, I got the following error:
Request format is unrecognized for URL unexpectedly ending in /myMethodName
81
votes
9answers
7k views
How do you get JavaScript/jQuery Intellisense Working in VS 2008?
I thought JQuery Intellisense was supposed to be improved with SP1. I even downloaded an annotated version of jquery 1.2.6, but intellisense will not work in a separate jscript file. I have the jquery ...
60
votes
9answers
58k views
How can I determine the element type of a matched element in jQuery?
I'm matching ASP.Net generated elements by ID name, but I have some elements which may render as text boxes or labels depending on the page context. I need to figure out whether the match is to a ...
0
votes
4answers
173 views
JQuery Selector for server side control
What is the difference between $('#<%=lblName.ClientID%>') and $("[id$=lblName]")
0
votes
1answer
51 views
how to make image stay in it's own place on the mouse over [closed]
please help me.I had tried really hard for it but nothing achived.I want the image to stay in its own place even when the mouse goes on it,I mean when the mouse moves from the relevent <li> to ...
0
votes
3answers
84 views
'$' is undefined error
trying to use a jqurey plugin and it is not working and this error keeps popping ('$' is undefined error) i am very new to javascript and jqurey so please be as simple as possible
<script ...
0
votes
1answer
13 views
JqGrid reload after add record
I'm trying to add new record to Jqgrid. Records are added successfully but the Grid does not reload(refreash) it self after inserting a record.
<div id="listPager" class="scroll" ...
0
votes
1answer
15 views
Add attribute to RadioButtonList input for JQuery Validation
How can I add required to one of the input fields which I believe is needed to enable JQuery Valiadation on a radio button group.
I can add required to the RadioButtonList control by doing the ...