Hi solidhex,
I think in this case, you should use the custom event.
Let's try something like that:
$(real_file').observe('launch:file',function(evt){
Event.stop(evt);
alert('real file launching');
});
$('fake_file').observe('click',function(evt){
Event.stop(evt);
$('real_file').fire('launch:file');
});
--
david
On 30 jan, 03:03, Walter Lee Davis <[email protected]> wrote:
> That's what I meant about it being uneven in browsers. IE will appear
> to do it, but then the resulting file won't actually upload. Safari
> works perfectly. I still haven't worked it all out.
>
> Walter
>
> On Jan 29, 2009, at 1:12 PM, solidhex wrote:
>
> > Yes, that's actually exactly what I tried. But it didn't seem to do
> > anything for me in FF3
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Prototype & script.aculo.us" 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/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---