You can try to use for test a classic function working with jQuery
framework like

// jQuery ajax example
function ResetPasswordAjax(){

var email  = document.getelementbyid("email").value;

 $.ajax({
   type: "GET",
   url: "http://eopp.de/users/login/"+email+"";,
   data: "",
   success: function(msg){
    alert( "Password reset succesfully!");
   }
 });
}

and then you call this function on submit like

<input type='submit' onclick='ResetPasswordAjax()'>

var email  = document.getelementbyname("email").value;

On 14 Dez., 21:03, AD7six <[email protected]> wrote:
> On 14 dic, 20:55, thomaus <[email protected]> wrote:
>
> > Nobody no clue?
>
> Try using firebug to give you an error message and/or debug the
> javascript. If you continue to have problems here's a clue: you have a
> (primarily) javascript only question - this isn't a javascript
> specific place :)
>
> AD

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to