Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

HOW to Edit HTML files with Firefox similar to IE11 in the past?

  • 7 replies
  • 0 have this problem
  • 248 views
  • Last reply by pendragon2

more options

I've been searching for a solution on HOW to edit HTML files (for websites) on my new laptop. I used to use IE11 (Internet Explorer 11), on Windows XP / 7 (32 bit), which worked spot on, the steps were as follows: (I write websites from scratch most of the time) 1) Click on, say, index.html 2) IE11 shows the actual page 3)Click on View/ Source 4)The source code shows up in Notepad 5) Edlt the code, Save and click Reload the webpage. You can straightaway see the changes.

Currently my new laptop runs Win 11 pro, Microsoft does NOT support IE11 anymore, I can however run IE11 as a add-on, BUT it does not work very well . I also tried a couple of free dedicated editing programs also, BUT they are exceedingly clumsy to use and can't equate to the old IE11 at any level. Somewhere I read that Firefox ( i have v115) can emulate what IE11 could do, hence I am on this forum posing the question, as i can't find the solution,

Anyone in the same boat?

Please share your ideas, Many thanks
I've been searching for a solution on HOW to edit HTML files (for websites) on my new laptop. I used to use IE11 (Internet Explorer 11), on Windows XP / 7 (32 bit), which worked spot on, the steps were as follows: (I write websites from scratch most of the time) 1) Click on, say, index.html 2) IE11 shows the actual page 3)Click on View/ Source 4)The source code shows up in Notepad 5) Edlt the code, Save and click Reload the webpage. You can straightaway see the changes. Currently my new laptop runs Win 11 pro, Microsoft does NOT support IE11 anymore, I can however run IE11 as a add-on, BUT it does not work very well . I also tried a couple of free dedicated editing programs also, BUT they are exceedingly clumsy to use and can't equate to the old IE11 at any level. Somewhere I read that Firefox ( i have v115) can emulate what IE11 could do, hence I am on this forum posing the question, as i can't find the solution, Anyone in the same boat? Please share your ideas, Many thanks

Chosen solution

Didn't you try view_source.editor.path -> C:\windows\notepad.exe (i.e. without the \view_source) ?

Read this answer in context 👍 1

All Replies (7)

more options

You can find these prefs on the about:config page to specify an external viewer/editor.

  • view_source.editor.args
  • view_source.editor.external
  • view_source.editor.path

You can open the about:config page via the location/address bar. On the warning page, you can click "Accept the Risk and Continue" to open about:config.

more options

Thanks for the reply Cor-el, I did the following:

view_source.editor.args  -->  view_source
   view_source.editor.external-->  true
   view_source.editor.path    --> C:\windows\notepad.exe\view_source

When i click on "page source" in Browser tools (ctrl-u) I get a page with the source code BUT, it is NOT notepad, as the pages shows colored text and I can't edit anything. Maybe the "view" in "view_source.editor.args " is wrong??

Modified by pendragon2

more options

Here's how you can view and edit HTML files using Firefox (similar steps apply to other modern browsers as well):

Opening HTML files: Open Mozilla Firefox on your Windows 11 laptop. To open an HTML file from your local drive, click on the "Open File" option in the File menu. Alternatively, you can drag and drop the HTML file directly into the Firefox window.

Viewing Source Code: Once the HTML file is loaded in Firefox, you can view the source code by right-clicking anywhere on the page and selecting "View Page Source." Alternatively, you can press "Ctrl + U" on your keyboard to open the page source.

Editing HTML Code: The source code will open in a new tab as plain text. You can make changes to the HTML code directly in this tab using any text editor of your choice. For example, you can use the built-in Notepad application in Windows 11. Either you can follow this blog as reference https://pakprices.pk/

more options

You only need:

  • view_source.editor.external--> true
  • view_source.editor.path --> C:\windows\notepad.exe

Leave view_source.editor.args blank (no args).


You can paste this code in the Browser Console (Ctrl+Shift+J) to check whether the path is valid.

try {
  var viewSourceAppPath = Services.prefs.getComplexValue("view_source.editor.path", Ci.nsIFile);
  console.log(viewSourceAppPath.path)
} catch (ex) {Cu.reportError(ex);}

Modified by cor-el

more options

Cor-el & Hamza, thanks for replies,

I set Firefox 115.0 in win 11 as default months ago. hence all my LOCAL HTML files open in Firefox. Reset --> No args ... view_source.editor.external--> true

  view_source.editor.path    --> C:\windows\notepad.exe\view_source

The HTML code page has been showing all along, BUT it is NOT notepad and I cannot edit anything, which I already mentioned in a previous message.

Notepad shows all text in black/white , the page I get is in colored text, akin a code page in C++ .

The difference being, is what I get in Firefox in READ only.

Pasting the line in Firefox, "https://firefox-source-docs.mozilla.org/devtools-user/browser_console/" I get: a page full of RED text, on clearing I get a few text pages in black /white It does not help to get notepad to show as editor.

Having to run Visual studio (free from MS) is way over the top for something simple as editing HTML code in notepad. i might have to dust of my old Win7 laptop, alas. I like the KISS priciple

more options

Chosen Solution

Didn't you try view_source.editor.path -> C:\windows\notepad.exe (i.e. without the \view_source) ?

more options

Cor-el

You're my savior That works a treat