Monday, June 3, 2024
 Popular · Latest · Hot · Upcoming
114
rated 0 times [  117] [ 3]  / answers: 1 / hits: 161168  / 12 Years ago, thu, june 14, 2012, 12:00:00

I have a line of php code that looks like this:



echo <script>$('#edit_errors').html('<h3><em>Please Correct Errors Before Proceeding</em></h3>')</script>;


I would like to know how to add a font color to the text correctly.
If I do this:



echo <script>$('#edit_errors').html('<h3><em><font color=red>Please Correct Errors Before Proceeding</font></em></h3>')</script>;


The word red is in black text and the compiler throws an error.



If I use single quotes around red, then the text does not show up at all.



Any help would be great.
Thanks


More From » php

 Answers
18

You need to escape , so it won't be interpreted as end of string. Use to escape it:



echo <script>$('#edit_errors').html('<h3><em><font color=red>Please Correct Errors Before Proceeding</font></em></h3>')</script>;


Read more: strings and escape sequences


[#84900] Wednesday, June 13, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
krystadesiraeo

Total Points: 493
Total Questions: 93
Total Answers: 100

Location: San Marino
Member since Thu, Jun 30, 2022
2 Years ago
;