473,513 Members | 2,492 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Javascript Editors

Is there any good opensource/free Javascript editor available? Thanks
Jul 23 '05 #1
13 1734
In article <c6************@ID-205437.news.uni-berlin.de>,
us*****************@earthlink.net says...
Is there any good opensource/free Javascript editor available? Thanks


Things like http://www.html-kit.com/ and http://www.evrsoft.com/1stpage
will happily let you edit JavaScript with syntax highlighting. To a
degree, they both have a run-time environment in terms of an in-browser
preview.

What do you want it to do?

--
Hywel I do not eat quiche
http://kibo.org.uk/
http://kibo.org.uk/mfaq.php
Jul 23 '05 #2
I'm a beginner and would like to be able to spice up my web page written in
PHP using javascript. I was looking for a Visual JavaScript Studio but could
not find one.

Thanks

"Hywel" <hy**********@hotmail.com> wrote in message
news:MP***********************@news.individual.net ...
In article <c6************@ID-205437.news.uni-berlin.de>,
us*****************@earthlink.net says...
Is there any good opensource/free Javascript editor available? Thanks


Things like http://www.html-kit.com/ and http://www.evrsoft.com/1stpage
will happily let you edit JavaScript with syntax highlighting. To a
degree, they both have a run-time environment in terms of an in-browser
preview.

What do you want it to do?

--
Hywel I do not eat quiche
http://kibo.org.uk/
http://kibo.org.uk/mfaq.php

Jul 23 '05 #3
In article <c6************@ID-205437.news.uni-berlin.de>,
us*****************@earthlink.net says...
"Hywel" <hy**********@hotmail.com> wrote in message
news:MP***********************@news.individual.net ...
In article <c6************@ID-205437.news.uni-berlin.de>,
us*****************@earthlink.net says...
Is there any good opensource/free Javascript editor available? Thanks
Things like http://www.html-kit.com/ and http://www.evrsoft.com/1stpage
will happily let you edit JavaScript with syntax highlighting. To a
degree, they both have a run-time environment in terms of an in-browser
preview.

What do you want it to do?

I'm a beginner and would like to be able to spice up my web page written in
PHP using javascript. I was looking for a Visual JavaScript Studio but could
not find one.


That's not what I mean. I want to know what you want the editor to do
for you. Do you want step-through, break points, debugging, ...?
--
Hywel I do not eat quiche
http://kibo.org.uk/
http://kibo.org.uk/mfaq.php
Jul 23 '05 #4
> That's not what I mean. I want to know what you want the editor to
do
for you. Do you want step-through, break points, debugging, ...?


Intellisense??
Jul 23 '05 #5
.... and possibly one that would run on Un*x?

"Useko Netsumi" <us*****************@earthlink.net> wrote in message news:<c6************@ID-205437.news.uni-berlin.de>...
Is there any good opensource/free Javascript editor available? Thanks

Jul 23 '05 #6
In article <72**************************@posting.google.com >, Yves-
Al************@bull.net enlightened us with...
... and possibly one that would run on Un*x?

"Useko Netsumi" <us*****************@earthlink.net> wrote in message news:<c6************@ID-205437.news.uni-berlin.de>...
Is there any good opensource/free Javascript editor available? Thanks


http://www.eclipse.org

--
--
~kaeli~
Humpty Dumpty was pushed!
http://www.ipwebdesign.net/wildAtHeart
http://www.ipwebdesign.net/kaelisSpace

Jul 23 '05 #7

"Hywel" <hy**********@hotmail.com> wrote in message
news:MP************************@news.individual.ne t...
In article <c6************@ID-205437.news.uni-berlin.de>,
us*****************@earthlink.net says...
"Hywel" <hy**********@hotmail.com> wrote in message
news:MP***********************@news.individual.net ...
In article <c6************@ID-205437.news.uni-berlin.de>,
us*****************@earthlink.net says...
> Is there any good opensource/free Javascript editor available? Thanks
Things like http://www.html-kit.com/ and http://www.evrsoft.com/1stpage will happily let you edit JavaScript with syntax highlighting. To a
degree, they both have a run-time environment in terms of an in-browser preview.

What do you want it to do?
I'm a beginner and would like to be able to spice up my web page written

in PHP using javascript. I was looking for a Visual JavaScript Studio but could not find one.


That's not what I mean. I want to know what you want the editor to do
for you. Do you want step-through, break points, debugging, ...?
--
Hywel I do not eat quiche
http://kibo.org.uk/
http://kibo.org.uk/mfaq.php


All the above and look-ahead inline documentation for function, methods, etc
....
Jul 23 '05 #8
Useko Netsumi wrote:
Hywel" <hy**********@hotmail.com> wrote in message
news:MP************************@news.individual.ne t...
Please configure your newsreader not to write attribution novels:
<http://insideoe.tomsterdam.com/>
That's not what I mean. I want to know what you want the editor to do
for you. Do you want step-through, break points, debugging, ...?
[...]


Please <http://netmeister.org/news/learn2quote.html>,
see also <http://jibbering.com/faq/#FAQ2_3>.
All the above and look-ahead inline documentation for function, methods, etc
....


Well, it really does not make sense to have the latter feature in editors
for ECMAScript implementations (e.g. NS JavaScript and M$ JScript). Most
of the objects and properties are not part of the core language but DOM
based, and every UA supports a different DOM. The rest depends on the
implementation and the implementation's version to a large degree.
<http://pointedears.de.vu/scritps/test/whatami>

Read the public specs instead when coding. With increasing experience, you
will need less lookup.
HTH

PointedEars
Jul 23 '05 #9
Useko Netsumi wrote:
Hywel" <hy**********@hotmail.com> wrote in message
news:MP************************@news.individual.ne t...
Please configure your newsreader not to write attribution novels:
<http://insideoe.tomsterdam.com/>
That's not what I mean. I want to know what you want the editor to do
for you. Do you want step-through, break points, debugging, ...? [...]

Please <http://netmeister.org/news/learn2quote.html>,
see also <http://jibbering.com/faq/#FAQ2_3>.
All the above and look-ahead inline documentation for function, methods,
etc ....


Well, it really does not make sense to have the latter feature in editors
for ECMAScript implementations (e.g. NS JavaScript and M$ JScript). Most
of the objects and properties are not part of the core language but DOM
based, and every UA supports a different DOM. The rest depends on the
implementation and the implementation's version to a large degree.
<http://pointedears.de.vu/scripts/test/whatami>

Read the public specs instead when coding. With increasing experience,
you will need less lookup.
HTH

PointedEars
Jul 23 '05 #10
Thomas 'PointedEars' Lahn wrote:
Useko Netsumi wrote:

Hywel" <hy**********@hotmail.com> wrote in message
news:MP************************@news.individual. net...

Please configure your newsreader not to write attribution novels:
<http://insideoe.tomsterdam.com/>


Nothing wrong with his newsreader, its more a problem of your perception
of how things should be done.
<http://pointedears.de.vu/scritps/test/whatami>


Before posting URL's, one should endeavor to ensure it doesn't return a
404 error.
--
Randy
Chance Favors The Prepared Mind
comp.lang.javascript FAQ - http://jibbering.com/faq/
Jul 23 '05 #11
In article <40************@PointedEars.de>, Po*********@web.de says...
Useko Netsumi wrote:
Hywel" <hy**********@hotmail.com> wrote in message
news:MP************************@news.individual.ne t...


Please configure your newsreader not to write attribution novels:
<http://insideoe.tomsterdam.com/>


Thanks for the link to a page about Outlook Express. Very useful
considering I haven't used OE to post to usenet for nearly 6 years.

That's not what I mean. I want to know what you want the editor to do
for you. Do you want step-through, break points, debugging, ...? [...]

Please <http://netmeister.org/news/learn2quote.html>,
see also <http://jibbering.com/faq/#FAQ2_3>.


Are you talking to me? If you are, check my post again and you'll see
that Gravity did its job correctly.

--
Hywel I do not eat quiche
http://kibo.org.uk/
http://kibo.org.uk/mfaq.php
Jul 23 '05 #12
Seems like it's a bit too late/early for you to post ...

Hywel Jenkins wrote:
In article <40************@PointedEars.de>, Po*********@web.de says...
Useko Netsumi wrote:
Hywel" <hy**********@hotmail.com> wrote in message
news:MP************************@news.individual.ne t...
Please configure your newsreader not to write attribution novels:
<http://insideoe.tomsterdam.com/>


Thanks for the link to a page about Outlook Express.


You're welcome.
Very useful considering I haven't used OE to post to usenet for
nearly 6 years.


Usenet is not an 1:1 medium. Please watch the quotation level
and tell Gravity not to write attribution novels either. Besides,
I do not call you hy**********@hotmail.com either, so please change
this, too.
That's not what I mean. I want to know what you want the editor to
do for you. Do you want step-through, break points, debugging,
...? [...]

Please <http://netmeister.org/news/learn2quote.html>, see also
<http://jibbering.com/faq/#FAQ2_3>.


Are you talking to me?


No, since you quoted correctly in contrast to Useko's fullquote.
F'up2 PointedEars
Jul 23 '05 #13
JRS: In article <40************@PointedEars.de>, seen in
news:comp.lang.javascript, Thomas 'PointedEars' Lahn
<Po*********@web.de> posted at Mon, 3 May 2004 02:08:22 :
Useko Netsumi wrote:
Hywel" <hy**********@hotmail.com> wrote in message
news:MP************************@news.individual.ne t...


Please configure your newsreader not to write attribution novels:
<http://insideoe.tomsterdam.com/>


Please stop trying to impost "standards" which do not have general
Usenet acceptance. That which is in the FAQ is accepted here, as is
that which is cited by the FAQ, and the RFCs (and son-of-1036). That is
all.

We do not need the Fourth Reich here.

--
© John Stockton, Surrey, UK. ?@merlyn.demon.co.uk Turnpike v4.00 IE 4 ©
<URL:http://jibbering.com/faq/> Jim Ley's FAQ for news:comp.lang.javascript
<URL:http://www.merlyn.demon.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demon.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Jul 23 '05 #14

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

Similar topics

3
4336
by: Java script Dude | last post by:
I have still yet to see a JavaScript Editor that comes close to reading a good JS book, learing it and using it with a text editor. Anyway, here my recipe for build successfull DHTML...
3
1481
by: TrvlOrm | last post by:
Hi There, Can any one please tell me where I can find a really good Free JavaScript Editor on the net? I am looking at either a evaluation copy (Free trial) or a really cheap but good editor...
1
293
by: richk | last post by:
Can someone recommend some Javascript editors....freeware,shareware,and commercial..and if you can please specify which ones are free,shareware and commercial.. thanks in advance
1
1336
by: Paul Aspinall | last post by:
Can anyone recommend a good editor for coding Javascript?? ie. once which has 'intellisense' type prompting etc. If there isn't an editor with this built-in, is there a program which does it as...
5
1670
by: BWIN | last post by:
I am the owner of a very large scale member-base website and the members are having trouble re-sizing there pics to create headshots. The headshots are supposed to be 175 x 175 pixels exactly. We...
21
1987
by: windandwaves | last post by:
Hi Folk Right now, I am using notepad2 to edit my PHP files. Do you have any recommendations for any php editors I should purchase instead? I dont mind spending some money for a good product....
3
2054
by: sqpost | last post by:
Hi, I have a web-application project which requires interactive User Interfaces. It is more like a web based xml content editor. I have seen a few javascript based text editors but not much flash...
10
2132
by: madtom1999 | last post by:
I've been playing with some javascript code and have produced a very rough proof of concept source code editor written in javascript (a bit like FCKeditor). Its not ready for release ((L)GPL>2 when...
22
2851
by: Dan Rumney | last post by:
Hi all, I've been writing Javascript for quite a while now and have, of late, been writing quite a lot of AJAX and AJAX-related code. In the main, my dynamically generated pages are created...
0
7161
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7384
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,...
0
7539
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7101
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...
0
4746
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...
0
3234
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...
0
3222
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1596
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 ...
1
802
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.