Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am only able to view the javascript file of website. How do i edit it? I tried everything like double clicking the line that i want to edit etc. But still it doesn't let me edit it. I am on Script tab. If i move to HTML tab i am able to edit HTML by clicking on Edit but i am not able to edit the javascript.

Thanks in advance:)

share|improve this question

5 Answers

up vote 32 down vote accepted

alt text

You can use the Firebug Console tab to write Javascript. I use this quite a lot of rapid prototyping of code before I integrate it into my projects. When you use the Console, javascript is executed in the context of the current page. Therefore, and scripts that are currently defined for that page, can potentionally be redefind. E.g., in the Console window, I could do this:

$ = function() { alert("Whoops"); }

...and that would redefine the $ function used by JQuery.

share|improve this answer
5  
Console -> command editor – ZiTAL Apr 27 '12 at 8:09

In the Firebug console, you can type in new javascript. So just redefine functions or variables as needed through that.

share|improve this answer

You can't do it. You should use javascript console to redefine functions.

share|improve this answer

As far as I know, only Chrome's dev tools support editing javascript inside their script tab (not just console). And you can add an extension like Tincr or Autosave and chrome will save the changes to your javascript files on the disk. So it is pretty much complete IDE for javascript.

Otherwise if you are using firebug, you would have to test your code in console, then open your text editor and open that file you were looking in firebug and then add those changes inside your text editor and save.

I hope that one day they will enable javascript to be editable inside script tab of firefox.

share|improve this answer

You can also use fiddler.
I use it and it has worked out for me pretty well.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.