[jQuery] UNSUSCRIBE

2010-01-19 Thread Juan Ignacio Borda
unsuscribe <>

Re: [jQuery] not able to receive POST data in php file

2009-12-21 Thread Juan Ignacio Borda
try a var_dump($_REQUEST) to see what's being submited. Original Message i am using the following JQuery function to "successfully" POST data to the user_submit.php file, its just that the php file is unable to receive the data. $(function() { $("#submit_js").click(

Re: [jQuery] Re: running an onload code snippet only once

2009-12-16 Thread Juan Ignacio Borda
try using: $(document).ready(function(){ ...your code here }); this is the JQuery way Original Message Those events window.onload, in jQuery, that would be $(window).load (...), should *not* be firing at any time other than when the document loads the first time... something

Re: [jQuery] Random problems with load()?????

2009-12-09 Thread Juan Ignacio Borda
try using firebug for firefox and look at the NET tab for response of the server. Original Message Hello everyone! I'm using load() to get some php content in ti a div, the PHP has a long switch() conditional that brings back contents depending on var received, it works fine

Re: [jQuery] Validate: a question about the Remote option

2009-12-01 Thread Juan Ignacio Borda
you have to actually echo the result of validation: true or false Original Message Hello everyone, I'm still dealing with that signup form. Now I'd like to check with an Ajax call if a login is already taken. That's what I'm doing: $("#signup").validate( { rules: { ulogin: {

Re: [jQuery] Validate: a question about the Remote option

2009-11-30 Thread Juan Ignacio Borda
hey..!!! you have to actually ECHO the result of your validation the remote method expects the response to be true or false. good luck! Original Message Hello everyone, I'm still dealing with that signup form. Now I'd like to check with an Ajax call if a login is already take