vote up 0 vote down star

If it's <script src="/script/jquery.autocomplete.js" type="text/javascript"> ,should call htmlspecialchars.

If it's <pre><code><script src="/script/jquery.autocomplete.js" type="text/javascript"></code></pre>,should leave it as is.

How to do this kind of task?

EDIT

Think you are using wmd editor like SO,and you included some code but didn't format it,in this case it should be processed by htmlspecialchars,but if you formatted it as "Code Sample",there is no need to process

flag

49% accept rate
3  
I think you want them the other way round. There's no need to place <script> within a <pre> if you want to execute the JS, if, however, you want show the <script> tag when it is within <pre> you'll need to HTML escape it with htmlspecialchars(). – Ollie Saunders Oct 25 at 7:36
Where are these two situations occurring? Why do you sometimes have it without the <pre>, and why do you want different behaviour each time? You don't make it clear whether you're trying to display the code or execute the JS. – DisgruntledGoat Oct 25 at 17:49
Did my answer help? – ARTstudio Nov 5 at 7:37

1 Answer

vote up 0 vote down

I would make two scripts: jquery.autocomplete.js, and jquery.autocomplete.pre.js. In the latter, don't call htmlspecialchars.

link|flag
How to make it programmatical?I don't know which case it is in code. – Mask Oct 25 at 5:44

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.