Skip to content
Advertisement

jquery $.get() adding slashes not saving edits even after slashes removed

I have created a simple css editing/optimizing system in a wordpress plugin. Basically, the css files are stored in a folder. They are accessed to edit though a selection box using jquery.

HTML

JavaScript

jQuery This jquery added slashes so I added the commented out line but it did not remove them.

JavaScript

parsing php I added stripslashes here wich did remove the slashes.

JavaScript

parseStyles($msg); minimzes and writes single style sheet.

JavaScript

All of this code works great if the styles do not have double quote. The file is called to the editing textarea and parses perfectly and write the minimized file. However, if the styles have double quotes:

CSS Example with Double Quotes

JavaScript

The file will save and be minimized. But when the file is called though jquery, though the edits are saved to the file, the new edits do not render in the textarea and as a result are lost if the file is saved onbce again. Hope I was able to explain the problem clearly. Any help or thoughts are appreciated.

Advertisement

Answer

While I am still not sure what was happening, the problem was in this jQuery:

JavaScript

When a css file was edited the edits would be saved and parsed through the minimizer php, but the above jQuery would not pick up the edits on the saved file when it was reselected. Have no idea as to why?

I was able to resolve the issue by changing the jQuery to:

JavaScript

and adding a php parse file with only one line of code to be able to make use of file_get_contents() instead using jQuery to get the contents of the desired css file:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement