3
votes
1answer
109 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
88 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
45 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
136 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>
…
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.????
0
votes
2answers
85 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
414 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
305 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
163 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
149 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
243 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" …
4
votes
2answers
161 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 …
0
votes
3answers
131 views
Making jQuery statements shorter
I have the following jQuery statement which works fine but I was wondering if it could be shortened and if making it more concise would speed up performance or not?
The reason for the strange …
2
votes
2answers
120 views
How do you select more than one element by id?
Hi,
I have two identical click events for two different elements that do not share a class, as such:
$("#element_1").click(function(){
alert("hello world");
});
$("#element_2").click(function(){
…
0
votes
1answer
79 views
jquery child matching too much?
I am importing a feed into Tumblr and because of the formatting of the site, it shows too many pictures. So to fix that, I thought I would use jquery to remove extra elements.
It turns out that the …
