Copy link to clipboard
Copied
Hey there...
I've run into a small problem. Obviously, I can update an HTML file (for example) and then, when I refresh my browser, I see that the change I made, reflected on the page.
But, how about making a change in a browser and having that update be reflected in the HTML file (could be any file, such as CSS, LESS, SaSS, etc)?
Is there any way to 'communicate' this way between on either a locally hosted, virtual server or a cloud host (that I have read/write access to?
Thanks for any help you may offer!
-Brian
javascript​
Copy link to clipboard
Copied
The lack of replies could indicate that this is, as yet, not possible.
Dreamweaver does have Live View which is a rendering engine based on Chrome. In other words, it is a 'browser' within Dreamweaver that allows you to make the changes that automatically changes the code. You can also change the style rules within Live view, but pre-compiled files (Less/Sass) will not be affected.
Please visit the Dreamweaver forum for more on Dreamweaver.
Copy link to clipboard
Copied
Thanks so much!
Copy link to clipboard
Copied
Silly question then. How does something like TinyMCE (or any similar tool) update an HTML file? I mean, you are (basically) updating content in the browser, just in the editor...but it ultimately has to update the html file, no?
Copy link to clipboard
Copied
You are most likely referring to a CMS (Content Management System) site, where registered users can update the site using the browser. A CMS site is database driven, meaning that the page (HTML) is populated from information contained in a database. When the content is changed (by using the likes of TinyMCE), you are actually changing the data in the database which in turn shows the changed content in the browser.
Have a look at this basic explanation from Simon Meisinger How do CMS work? - Quora