[jQuery] Re: jQuery 1.4 cross domain post bug?

2010-01-16 Thread TexInWien
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

[jQuery] Re: Validation

2010-01-14 Thread TexInWien
Try this: script type=text/javascript         $(document).ready(function() {                 $(#autoSumForm).validate({                         rules: {                                 p1001: {number: true},                                 p1002: {number: true}                         },