4
votes
jQuery slicing and click events
The following selector should also work in jQuery: 'input:checkbox'.
You can then string the :gt(index) and :lt(index) filters together, so if you wan …
12
votes
Getting the ID of the element that fired an event using JQuery
In jQuery event.target always refers to the element that triggered the event, where 'event' is the parameter passes to the function. …
2
votes
Linking combo box (JQuery preferrably)
I'm not sure where you want to link to when you click the Div, but given something like this perhaps would work:
<select id="mySelect">
<option value="1">Option 1</ …
1
vote
How to read bound hover callback functions in jquery
Calling an event bind method (such as hover) does not delete old event handlers, only adds your new events, so your idea of 'restoring' the old event functions wouldn't wo …
0
votes
Using jQuery to beautify someone else’s html
This certainly sounds possible. With a combination of jQuery.append and jQuery.fadeIn and fadeOut you should be able to create a nice little tabbed control.
See the JQuery UI/Tabs for a sim …
15
votes
best way to remove an event handler in jquery?
In your example code you are simply adding another click event to the image, not overriding the previous one:
$('#myimage').click(function() { return false; }); // Adds another clic …
1
vote
How do I change/replace a flash object with jquery or pure javascript?
The empty() method is the better way of deleting content. Don't know if that will solve your problem though :)
$('#mydiv').empty();
You could also try …
2
votes
Creating a div element in JQuery
Technically $('<div></div>') will 'create' a div element (or more specifically a DIV DOM element) but wont add it to your HTML document. You will then need to use that in c …
2
votes
Generated Javascript Does not execute
I don't see the problem. The following works fine for me:
$(document).ready(function() {
$('#mainDiv').html('<input type="button" onclick="LoadPage()" value="Test" />');
}); …
0
votes
jQuery datepicker, onSelect won’t work
The function datepicker is case sensitive and all lowercase. The following however works fine for me:
$(document).ready(function() {
$('.date-pick').datepicker( {
…
2
votes
javascript to jquery
It depends greatly on exactly what 'rt' will contain and how it is then added to the DOM.
If it just contains HTML then obviously $(parentSelector).html(rt) would solve the pro …
1
vote
jquery callbacks being called multiple times
That would produce the alert when the fadeOut on the last element was called. That would not necessarily be the last fadeOut.
var numDivs = $('div').length;
$('div').fadeOut(1000, f …
2
votes
jQuery loop though two levels of elements
I'm not 100% sure if this answers what you are asking, but wouldn't the following work:
$('.block:has(div)').each(function() {
$(this).children('div').each(function() {
// do …
0
votes
Can jQuery be used in a classic ASP application?
Classic ASP and ASP.Net are both server side technologies, which output HTML etc to the client browser.
JavaScript is a client side technology, and JQuery is a framework written in JavaScri …
1
vote
jQuery :cant use split function
Well seeing as split is a method defined on a string, have you considered trying data.toString().split(".") or String(data).split(".") ?
…
