1
vote
How can I upload files without using an HTML <form>?
With jQuery.post you will be only able to send key/value pairs to the server in a POST Request, However you can use plugins like …
2
votes
Best JavaScript Date Parser & Formatter?
Take a look to this very good article: JavaScript date formatting benchmarks
…
5
votes
Calling a jQuery function inside html return from an AJAX call
If you want JavaScript tag evaluation, with html content, you should set the dataType option of the ajax call to "html":
$.ajax({
type: "GET",
url: "yourPage.htm",
dataType: " …
3
votes
does YUI have selectors like in jQuery?
Check the YUI Selector Utility, it gives you CSS3 selector si …
0
votes
Focusing first control in the form using jquery
You can do it in many ways, using selectors, for example:
$(document).ready(function() {
$("form:first input:not(.f …
25
votes
what are the “must have” JQuery plugins?
My list:
Autocomplete
Input field to enable users quickly finding and selecting …
1
vote
Coloring of Select html element by jquery
Check css(properties), you can apply styles very easy.
$(document).ready(function(){
$("select option:odd"). …
0
votes
0
votes
Open the Save Image dialog using jQuery/Javascript?
The only thing that comes to my mind is the document.execCommand("SaveAs") of Internet Explorer, you can open a window or use a hidden iframe with the url of your image, and then call it...
…
2
votes
jQuery UI - a swap function that hides and unhides elements by selector
Why you don't use toggle() ?
For example:
function swap(sel) {
$(sel).toggle();
}
…
2
votes
How would I do a proper fadein for dynamic content refreshing with jquery?
I think you want to create a Digg Spy-like effect, check …
1
vote
jQuery: print_r() display equivalent?
You could use very easily reflection to list all properties, methods and va …
6
votes
2
votes
The jQuery Validation `valid()` method returns 0 when required is not true
Check this, from the documentation:
Makes "field" required and digits
only.
…
3
votes
How do I keep events elements added through a ajax call in jQuery “active”
You can use Events/live of jQuery 1.3, live will bind a handler to an event for all current - and future - matched elements. …
