How to edit Java(.js) files?

AWC108

New Member
I have tried WordPad, Notepad and Macromedia Dreamweaver MX 2004 but all of them can't find the one I'm looking for. I think it's because the file is messed up when opened with those applications.

I was to find this line:
Code:
			case 'PHP':
			{
				this.apply_format('removeformat');
			}
			break;

and add this underneath it:
Code:
			case 'HIDE': {
				if (hidetag_shortcut == 0 || hidetag_shortcut == 4) {
					useoption = true;
				} else {
					useoption = false;
				}
			}
			break;
			case 'HIDE-POSTS':
			case 'SHOWTOGROUPS': {
				useoption = true;
			}
			break;

But I can't find it :\ What applications do you guys use for editing .js files?



Thanks
 
Back
Top