Re: java and activex problems

"anon" <[email protected]> Sat, 8 Apr 2006 11:25:54 -0700
Newsgroups gmane.mail.spam.spamcop.geeks
Organization SpamCop
Message-ID <[email protected]>
"Ant" <[email protected]> wrote in message 
news:[email protected]...
> "anon" wrote:
>
>> When I click on a link where copy shortcut = javascript:void(0), nothing
>> happens and when I past the link into the address box and click on go -
>> nothing happens. The 'javascript:void(0)'  just won't execute.
>
> As intended (see extract from documentation below).
>
>> Obviously this is due to some security setting recommended by M$.
>
> Apparently not, in this case.
>
>> I have my security setting (as suggested by MS) set so that the warning:
>> 'your security setting do not allow web sites to use activex controls
>> installed on your computer...' appears when I open a web site window.
>>
>> Clicking on this banner does not give the option of allowing THAT site to
>> use the activex controls - what settings will allow a happy medium?
>
> Set ActiveX to "Prompt".
>

**
Tried that but even clicking on the ok button in the prompt fails to allow 
the proper operation - want to purchase something, clicking in add to cart - 
prompt - ok - next screen says shopping cart empty. So it acted as if I has 
refused  to allow the action.
***
<clip>
>
> The following code creates a hypertext link that does nothing when
> the user clicks it. When the user clicks the link, void(0) evaluates
> to undefined, which has no effect in JavaScript.
>
> <A HREF="javascript:void(0)">Click here to do nothing</A>
>

**
On a site that had a 'slideshow' of pictures, the button to activate does 
show a slideshow on another computer and when I copy shortcut, is shows: 
javascript:void(0) - so something is happening.

-- 
A SpamCop user and forum reader,
Not Admin
***

> The following code creates a hypertext link that submits a form when
> the user clicks it.
>
> <A HREF="javascript:void(document.form.submit())"> Click here to
> submit</A>
>
> </quote>
>
>