1
vote
How do I hide a div based on empty input fields within it?
This may have just been a typo, but you also don't need / shouldn't have a CSS class name of ".details" in your markup, just "details". The dot prefix is part of the CSS/jQuery selector syntax. …
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 …
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 …
2
votes
Method for displaying “loading” message
You can use ajaxSend and ajaxStop on the jQuery object to attach …
1
vote
Better way or reusable code to populate an HTML element or create a select after a jQuery AJAX call
For filling an element with the results of an AJAH call, check out the load method.
I'm not aware of an existin …
0
votes
Set the actual value attribute of an input with jQuery
Even better than a local variable, you could use the jQuery Data methods to store the reset values along with the element to be reset.
When saving:
$(this).data("ResetValue" …
