[jQuery] Re: jQuery 1.4 cross domain post bug?
In addition to the JSONP option, you could also use a Web Proxy. This is simply a server side script that sits on your domain. It takes the POST from your domain, repackages it, POSTs it to the secondary domain and sends the response back to the browser. http://yourdomain.com/yourform.html POSTs t
[jQuery] Re: Validation
Try this: $(document).ready(function() { $("#autoSumForm").validate({ rules: { p1001: {number: true}, p1002: {number: true} }, me