On 2/26/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> Well, thanx for your answer.
>
> I thougt it would be that thing but wasn't sure.
> Well, so I have to finde another workaround.
>
> Felix
>

You can export your 'alert(return);' in a dedicated function :
var function3 = function(content) {
   alert(content);
}
which will be called by:
...
       onComplete: function(t,j)
       {
              var variable = j.Content;
              function3(variable);
       }
...

Yours,
Nicolas Terray

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Spinoffs" 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/rubyonrails-spinoffs?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to