Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a mysterious problem. I have a php language array like this:

$lang['tip1054'] = '<b>Resource Error:</b>%s <br />
<b>OS:</b> %s <br />
<b> Ram:</b> %s <br />
<b> CPU:</b> %s <br />
';

I would show it in a tooltip that is written by javascript the function is used like this:

<span class='haveHelp' onMouseOver="ShowTip(' <?php printf ($lang['tip1054'],$error,$os,$ram,$cpu); ?> ')"> </span>

But it shows nothing. I used firebug to see what problem is. Faced this error:

SyntaxError: unterminated string literal
[Break On This Error] 

ShowTip('<b>Resource Error:</b> 1054

and this is HTML Output:

<span class='haveHelp' onMouseOver="ShowTip('<b>Resource Error:</b>1054 <br />
<b>OS:</b> Windows Xp <br />
<b> Ram:</b> 1024MB <br />
<b> CPU:</b> Corei7-5130 <br />')">Error 1054</span>
share|improve this question
1  
Can you show the complete rendered HTML for the <span> element? – Dai Oct 1 '12 at 1:33

2 Answers

up vote 0 down vote accepted

A. You should replace printf because the arguments are not complete you have 4 %s in $lang['tip1054']

printf ($lang['tip1054'],$os,$ram,$cpu);

With

printf ($lang['tip1054'],"Fist Message", $os,$ram,$cpu);

B. You should remove all white spaces and line breaks

$lang['tip1054'] = trim($lang['tip1054']);
$lang['tip1054'] = str_replace(array("\r","\n"), "", $lang['tip1054']);

See Demo

share|improve this answer
it works very well... i had to only remove php newlines... – Pejman Ghasemi Oct 1 '12 at 1:48

You can't have line breaks in a string in JavaScript. Strip them out with PHP using str_replace("\n", '', $lang...) or something.

share|improve this answer
and what's your idea how to use line breaks? – Pejman Ghasemi Oct 1 '12 at 1:35
If you want to use line breaks in JavaScript you have to use the "\n" literal. It's generally not a good idea to mix JS with PHP for a variety of reasons, this being one. – Explosion Pills Oct 1 '12 at 1:36
thank you very much, it works very well... – Pejman Ghasemi Oct 1 '12 at 1:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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