473,545 Members | 2,657 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

i have java problems in IE 6

hello,
i have IE 6 and all the things that need for java in Security Settings
are Enable
and i still have problems with java like:
when i want to open a window that have javascript as link[eg:
javascript:Open Window('/en/bejeweled/game.htm','spg' , '','','') ]
it's not works...
or like,
i want to download a file that i need to enter a code that need java
it's not work too..

please help me!

Nov 30 '06 #1
11 1576
wrote on 30 nov 2006 in comp.lang.javas cript:
hello,
i have IE 6 and all the things that need for java in Security Settings
are Enable
Java has nothing to do with javascript
[exept part of the name]
and i still have problems with java like:
when i want to open a window that have javascript as link[eg:
javascript:Open Window('/en/bejeweled/game.htm','spg' , '','','') ]
it's not works...
Show your exact code and tell us what the problem is, you are having.

"it's not works" is not enough,
what error code are you receiving from your browser,
and what is your browser's name and version?
or like,
i want to download a file that i need to enter a code that need java
it's not work too..
Please refrase, I do not understand.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Nov 30 '06 #2

Evertjan. wrote:
wrote on 30 nov 2006 in comp.lang.javas cript:
hello,
i have IE 6 and all the things that need for java in Security Settings
are Enable

Java has nothing to do with javascript
[exept part of the name]
and i still have problems with java like:
when i want to open a window that have javascript as link[eg:
javascript:Open Window('/en/bejeweled/game.htm','spg' , '','','') ]
it's not works...

Show your exact code and tell us what the problem is, you are having.

"it's not works" is not enough,
what error code are you receiving from your browser,
and what is your browser's name and version?
or like,
i want to download a file that i need to enter a code that need java
it's not work too..

Please refrase, I do not understand.
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
K,
problem 1: the full code is:
javascript:Open Window('/en/bejeweled/game.htm','spg' , '','','') and the
problem that this code need to open a window but nothing happen and i
don't get an error at all, my browser name is: Microsoft Internet
Explorer and version is 6.0.

problem 2: you know site named rapidshare? in this site you need to
enter a code before download a file.. the code is based on
javascript...

i hop you understand now.

Nov 30 '06 #3
wrote on 30 nov 2006 in comp.lang.javas cript:
>
Evertjan. wrote:
>wrote on 30 nov 2006 in comp.lang.javas cript:
hello,
i have IE 6 and all the things that need for java in Security
Settings are Enable

Java has nothing to do with javascript
[exept part of the name]
and i still have problems with java like:
when i want to open a window that have javascript as link[eg:
javascript:Open Window('/en/bejeweled/game.htm','spg' , '','','') ]
it's not works...

Show your exact code and tell us what the problem is, you are having.

"it's not works" is not enough,
what error code are you receiving from your browser,
and what is your browser's name and version?
or like,
i want to download a file that i need to enter a code that need
java it's not work too..

Please refrase, I do not understand.

K,
What is that?

problem 1: the full code is:
javascript:Open Window('/en/bejeweled/game.htm','spg' , '','','')
Well that cwertainly will not work, as it has to be inside scrit tags or
in an eventtag, like onmousedown='.. .'
and the
problem that this code need to open a window but nothing happen
OpenWindow() is not a Javascript internal function.
Could it be a function you defined?
and i don't get an error at all,
I doubt that, unless you did not put the above inside one of the two.
my browser name is: Microsoft Internet
Explorer and version is 6.0.

problem 2: you know site named rapidshare?
No.
in this site you need to
enter a code before download a file.. the code is based on
javascript...
A code like a password?
I think I do not want to know, I just want to talk about and perhaps
help you with simple javascript.
i hop you understand now.
No.

I never hop, I walk.

Concluding: Please show your exact and complete code, so complete that
it sould work, but without irrelevant parts.

--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Nov 30 '06 #4
ASM
vo******@gmail. com a écrit :
problem 1: the full code is:
javascript:Open Window('/en/bejeweled/game.htm','spg' , '','','') and the
problem that this code need to open a window but nothing happen and i
don't get an error at all, my browser name is: Microsoft Internet
Explorer and version is 6.0.
Right code could be :

<a href="javascrip t:open.window('/en/bejeweled/game.htm','spg' )">
load</a>

Correct code would be :

<a href="/en/bejeweled/game.htm"
onclick="open.w indow(this.href ,'spg');
return false;">load</a>
or :

<a href="/en/bejeweled/game.htm" target="spg"
onclick="open.w indow('','spg') ;">load</a>

or in html non strict :

<a href="/en/bejeweled/game.htm" target="spg">lo ad</a>

which gives quite exactly same result as all these JS added

--
Stephane Moriaux et son (moins) vieux Mac déjà dépassé
Stephane Moriaux and his (less) old Mac already out of date
Dec 1 '06 #5
ASM
ASM a écrit :
Correct code would be :

<a href="/en/bejeweled/game.htm"
onclick="open.w indow(this.href ,'spg');
Heu ... non !

onclick="window .open( ... );
return false;">load</a>
or :

<a href="/en/bejeweled/game.htm" target="spg"
onclick="open.w indow('','spg') ;">load</a>
onclick="window .open('','spg') ;">load</a>
--
Stephane Moriaux and his (less) old Mac already out of date
Dec 1 '06 #6
ASM wrote on 01 dec 2006 in comp.lang.javas cript:
ASM a écrit :
>Correct code would be :

<a href="/en/bejeweled/game.htm"
onclick="open.w indow(this.href ,'spg');

Heu ... non !

onclick="window .open( ... );
> return false;">load</a>
or :

<a href="/en/bejeweled/game.htm" target="spg"
onclick="open.w indow('','spg') ;">load</a>

onclick="window .open('','spg') ;">load</a>
<a href='/en/bejeweled/game.htm' target='mytarge t'
onclick='window .open(this.href ,this.target);' >load</a>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Dec 1 '06 #7
ASM
Evertjan. a écrit :
ASM wrote on 01 dec 2006 in comp.lang.javas cript:
>><a href="/en/bejeweled/game.htm" target="spg"
onclick="window .open('','spg') ;">load</a>

<a href='/en/bejeweled/game.htm' target='mytarge t'
onclick='window .open(this.href ,this.target);' >load</a>
Why do you (once more) correct my corrected proposition ?
It doesn't work with you ?
--
Stephane Moriaux et son (moins) vieux Mac déjà dépassé
Stephane Moriaux and his (less) old Mac already out of date
Dec 1 '06 #8
ASM wrote on 01 dec 2006 in comp.lang.javas cript:
Evertjan. a écrit :
>ASM wrote on 01 dec 2006 in comp.lang.javas cript:
>>><a href="/en/bejeweled/game.htm" target="spg"
onclick="window .open('','spg') ;">load</a>

<a href='/en/bejeweled/game.htm' target='mytarge t'
onclick='windo w.open(this.hre f,this.target); '>load</a>

Why do you (once more) correct my corrected proposition ?
It doesn't work with you ?
I do not correct you, Stephane, why would you think that?

I just put another option.

More extensive, showing the versatility of javascript:

<script type='text/javascript'>
var z='2006/WORLD/europe/12/01/uk.spywrap/'
</script>

<a href='http://cnn.com/' target='_blank'
onclick='window .open(this.href +z,this.target) ;return false;'>
spywrap or cnn homepage, depending on availability of JS</a>


--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Dec 1 '06 #9
ASM
Evertjan. a écrit :
>
I do not correct you, Stephane, why would you think that?
Usually when I put code or fragments in answer it is to give a correction.
I just put another option.
And you've forgotten : 'or :'
so I see that as a correction.
spywrap or cnn homepage, depending on availability of JS</a>
because 'z' (spywrap) needs JavaScript I presume.

--
Stephane Moriaux et son (moins) vieux Mac déjà dépassé
Stephane Moriaux and his (less) old Mac already out of date
Dec 1 '06 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

47
5097
by: Theatre Mgmt | last post by:
Sun project seeks to solve Java memory, execution issues http://story.news.yahoo.com/news?tmpl=story&u=/infoworld/20050325/tc_infoworld/58059&e=1&ncid= San Francisco (InfoWorld) - Sun Microsystems Laboratories (Sun Labs) is working on a research effort to address issues with the memory footprint, startup and execution times when running...
133
8456
by: Gaurav | last post by:
http://www.sys-con.com/story/print.cfm?storyid=45250 Any comments? Thanks Gaurav
2
9205
by: Kent Lewandowski | last post by:
hi all, Recently I wrote some stored procedures using java jdbc code (admittedly my first stab) and then tried to implement the same within java packages (for code reuse). I encountered problems doing this. I wanted to implemented a generic "Helper" class like this: /** * Helper
8
11198
by: Michael A. Covington | last post by:
Has anyone made any tests they'd like to tell me about? -- Michael A. Covington - Artificial Intelligence Ctr - University of Georgia "In the core C# language it is simply not possible to have an uninitialized variable, a 'dangling' pointer, or an expression that indexes an array beyond its bounds. Whole categories of bugs that...
1
9599
by: David Van D | last post by:
Hi there, A few weeks until I begin my journey towards a degree in Computer Science at Canterbury University in New Zealand, Anyway the course tutors are going to be teaching us JAVA wth bluej and I was wondering if anyone here would be able to give me some tips for young players such as myself, for learning the language. Is this the...
458
20864
by: wellstone9912 | last post by:
Java programmers seem to always be whining about how confusing and overly complex C++ appears to them. I would like to introduce an explanation for this. Is it possible that Java programmers simply aren't smart enough to understand C++? This is not merely a whimsical hypothesis. Given my experience with Java programmers --- the code they...
2
6932
by: Jobs | last post by:
Download the JAVA , .NET and SQL Server interview with answers Download the JAVA , .NET and SQL Server interview sheet and rate yourself. This will help you judge yourself are you really worth of attending interviews. If you own a company best way to judge if the candidate is worth of it. http://www.questpond.com/InterviewRatingSheet.zip
148
5044
by: BillJosephson | last post by:
Want to do OOP. Does c++ have all the abilities of java, or is it some subset? Thanks...
8
1834
by: tenxian | last post by:
Is PHP more suitable for developing an interactive website than Java/ J2EE?
0
7496
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7685
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
1
7452
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
6014
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5354
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5071
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3485
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
1
1916
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
738
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.