7
votes
Javascript Reflection
The technical reason why those methods are hidden is twofold.
First, when you execute a method on the Test object, "this" will be the untyped object returned at the end of the anonymous fu …
5
votes
jQuery - How to Select Multiple Descendants?
The comma in the selector string separates completely separate expressions, just like in CSS, so the selector you've given gets the select elements within the form named "cusomize" and all inputs o …
1
vote
Javascript: how to validate dates in format MM-DD-YYYY?
You can simplify it somewhat by changing the first two lines of the function to this:
var matches = this.match(/^([0-9]{2})\/([0-9]{2})\/([0-9]{4})$/);
Or, just ch …
1
vote
How to find checked RadioButton inside Repeater Item?
I'm pretty sure that the only thing you could use LINQ to Objects for here would be to take the conditions from within the foreach loop and move them to a where clause.
RadioButton …
3
votes
jQuery plugin for pre-populating form text inputs
jQuery Example looks pretty good, even if the name isn't really specific enough.
…
6
votes
Using fadein and append
If you hide the content before you append it and chain the fadeIn method to that, you should get the effect that you're looking for.
// Create the DOM elements
$(content)
// Sets th …
5
votes
Are design patterns in JavaScript helpful? And what exactly are they?
One of the most practical and easy to use JavaScript-specific design pattern I've encountered is the Module Pattern, …
