0
votes
XML based website - how to create?
(I'd really recommend using a traditional database instead.)
In ASP you can use the MSXML-component to parse and change XML-files. More information about the MSXML-component can be found on …
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
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");
});
});
…
0
votes
JavaScript - function to get real image width & height (cross browser)
jquery + <img src="" ... id="hello" /> + $("#hello").width()
…
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.
…
4
votes
recursively concatenating a javascript functions arguments
This works:
function concatenate(){
return [].join.call(arguments, "");
}
alert(concatenate("one", "two", "three"));
…
2
votes
finding object in Javascript
Dunno how fast it is, but you could try the jQuery-way, grab jQuery from www.jquery.com and insert the following code on the page:
…
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
The “this” in javascript and ASP.NET control prefixes
Add jQuery and use the following:
$(myThis).nextAll("td").each(function(){
// Code to "disable" them here, dunno what you mean by that though as they are tds.
});
…
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></ …
0
votes
javascript function arguments in Jquery
It seems like you are doing it wrong, though I'm not sure, as it's unclear what you are trying to do. What are you trying to do? Please edit your question and add more info …
6
votes
0
votes
JQuery event.target error
$(...selectquery...). .click(function(event) { var $tgt = $(event.target);
$(this).parent().css("...") should work as well
…
5
votes
What is the rationale for the behavior of the ‘this’ keyword in JavaScript?
It wasn't
Lots of OO stuff
It's good the way it is
…
