0
votes
generate HTML document server-side with jquery and classic asp
Yes it is possible. No, it wouldn't be fast at all and I don't see any reason for doing it as jQuery is often used for doing things that are only relevant on the client.
…
0
votes
Valid jQuery on Development fails on Production
Put same data in dev as in prod, then dump view source for both and make do a diff.
Why use siblings property and not just:
$('#objID .mAddress').html();
A …
0
votes
jQuery resize not working at FireFox, Chrome and Safari
Why do you expect #dvMyDIV to be resized? Is maybe resizing of that element a result of something else, maybe the window being resized? If so, try
$(window).resize(function(){alert( …
1
vote
JQuery-bound event handlers
Forget what you read somewhere and go ahead and use the this keyword:
$("#foo:first-child").click(function(event) {
$(this).css("background", "pink");
});
…
2
votes
in jQuery, set spans with same class to display:inline from :block
$(".theclass").css("display", "inline");
or maybe
$(".theclass").show();
…
3
votes
1
vote
jQuery - looking for a better selectors syntax
Out of my head:
$("a.editcontent").click(function(){
$(this).parents("h2").slice(0, 1).next(".content").trigger("edit");
});
…
2
votes
Using jQuery for first time, simple problem!
You don't need the ids! Try this:
$(function(){
$("a").click(function(){
$(this).parents("p").slice(0,1).next("p").slideToggle("slow");
});
});
…
2
votes
How do I get the total Json record count using JQuery?
Why would you want length in this case?
If you do want to check for length, have the server return a JSON array with key-value pairs like this:
[
{key:value},
{key:value …
5
votes
In jQuery, what’s the best way of formatting a number to 2 decimal places?
Maybe something like this, where you could select more than one element if you'd like?
$("#number").each(function(){
$(this).val(parseFloat($(this).val()).toFixed(2));
});
…
3
votes
Left() function in Javascript or jQuery
$('#block').offset().left contains the actual left position value as an integer.
…
1
vote
JQuery Effect Multiple Elements
var request = "foo";
$("#refreshme_" + request + ", .xPlanner").load("http://www.example.com/add_list/");
and
<div id="#refreshme_foo">Lorem</div& …
2
votes
What jQuery annoyances should I be aware of as a Prototype user?
(The only thing I can think of is that this is the element instead of a jQuery object in $("...").each(function)-calls, as $(element) is more often used then just the elem …
0
votes
More efficent method of styling alternating blocks of table rows with jQuery?
I would add a class to the first TR in a group:
<tr class="group"><td>Group 1</td></tr>
<tr class="grouppart"><td>Part of group 1</td></ …
3
votes
jQuery $(document).ready and UpdatePanels?
Upgrade to jQuery 1.3 and use:
$(function() {
$('div._Foo').live("mouseover", function(e) {
// Do something exciting
});
});
Note: live works wit …
