This repository was archived by the owner on Sep 21, 2022. It is now read-only.
This repository was archived by the owner on Sep 21, 2022. It is now read-only.
Wrong JavaScript syntax in a PHP file #62
Open
Description
If you write JS in a PHP file, the colors for syntax highlight are different.
You get the "=", braces, curly braces and variable names as pink color in anonymous functions.
As an example, write this code with a JS file and a PHP file:
<script> var handler = 3; $(document).ready(function(){ var something = 5; }); </script>