0
votes
1answer
26 views
How to use JQuery AJAX with ASP.net 2.0 ?
I want to use JQuery Ajax with ASP.net 2.0, VS2005. Please help me out.????
3
votes
2answers
408 views
jQuery event handlers not firing in IE
I have a list of items on a page with a set of controls to MoveUp, MoveDown and Delete.
The controls sit at the top of list hidden by default. As you mouseover an item row, I select the controls with …
3
votes
1answer
100 views
Why am I getting a jQuery ‘ui.element is undefined’ error?
I have the following:
$('#widgets ul').sortable(
{
connectWith: ['#widgets ul'],
opacity: 0.7,
start: function(e, ui) {
fromWidgetPosition = ui.item.prevAll().length + 1;
fromRowId = …
0
votes
2answers
80 views
Problem with removing/animating a YouTube flash video-player container.
I used the code from the following question to insert a YouTube video into a page: http://stackoverflow.com/questions/1314662/how-to-resize-a-youtube-player-from-thumbnail-size-to-normal-size.
Given …
0
votes
2answers
86 views
jquery firing issue
I am using a function to equalise the height of li tags returned from a database. I am also using jquery to assign certain li new classes dependant on their position in a row.
Basocally my problem is …
0
votes
0answers
44 views
Jquery tabs & calendar not binding properly
I'm implementing a page jquery tab toggle that loads content from hidden divs on the page. on one of the hidden pages i have a calendar popup (part of the jQuery.UI api. this works find on it's own …
0
votes
4answers
133 views
jQuery selector problem
Hi!
I have this selector:
$("table.details tbody tr:not(.details)")
But I'm wondering why this inner table gets selected too:
<table class="items details">
<thead>
…
1
vote
4answers
903 views
strange behavior when using jQuery fadeOut function on element with floated element and absolutely positioned element
I am trying to use jQuery to fade out a div, using the fadeOut function. In most cases, it seems to work fine, but in certain cases, not all of the content fades out. If I have an absolutely …
0
votes
2answers
401 views
How to resize a YouTube player, from thumbnail size to ‘normal’ size…
I guess this is similar to what Facebook does, but...I haven't worked out how to follow what they do and if this is a dupe, I apologise.
The idea is to have a thumbnail-size player (width="220px" …
1
vote
2answers
295 views
jQuery with ASP.NET WebForms - disabling textboxes
Another jQuery noob question - what am I doing wrong??
I have some HTML markup rendered by ASP.NET 3.5 webforms which looks like this:
<input id="ctl01_cphContent_pnlBasicInfo_chkRC"
…
2
votes
4answers
162 views
jQuery with ASP.NET WebForms for a poor old server dev…
OK, being a server developer, this Javascript voodoo on the ASP.NET page (based on a master page) rendered on the client is a bit too much for me, it seems :-)
I decided to try to use jQuery to …
2
votes
3answers
145 views
parse variable as JSON w/ jQuery
I am trying to populate a form with a list of questions and radio buttons. When the page is loaded I have a variable that contains the answers they have so far as a string in JSON format:
var json = …
1
vote
2answers
230 views
JQuery - ref div and href id in div
Hi,
I want to be able to know when someone clicks a link and then reference a var within the link that I assign as a ID. For example given a link like this:
<a class="TrackClick" …
0
votes
6answers
686 views
jQuery focus function not working in Firefox
The following piece of code focuses the text input after you click on the link. It works fine for Chrome 2.x, IE8 and Opera 9.64 but not on Firefox 3.0.9. The text input flashes quickly in Firefox …
4
votes
2answers
156 views
How can I assign a property to a jQuery object?
Hi,
It is in my understanding that referencing any DOM element in jQuery via the dollar sign (like this: $("#mydiv")), returns an object.
I am looking to add an additional property to an object as …
