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.

why does the following code not work?

<?php
$j= "<option value='kj' name='dd'>" ;
?>

<script type="text/javascript">
    function getinfo(a){     
    if(a==2){
    var k ="<?php echo $j;?>";
    alert(k);
    }


}
</script>

It works when I say $j="option";

share|improve this question
1  
Any errors? Have you checked your page's generated source? What does it say in there? – Xeon06 Sep 7 '12 at 18:57
Well it does not show the alert box so I assume it's not working – zista Sep 7 '12 at 18:57
2  
You need to debug it. Is your function even being called? Do you have any errors in your console? What does your generated source show? – Xeon06 Sep 7 '12 at 18:58
1  
@sam no you won't, in the context of putting a value in a JS variable from PHP, you don't need to do any deserialization in the JS. It will be the value as-is. – Xeon06 Sep 7 '12 at 19:08
1  
@sam I'm sorry, I don't understand where deserialization would ever be necessary in this. Can you show me an example? – Xeon06 Sep 7 '12 at 19:34
show 14 more comments

1 Answer

There are a couple possibilities here:

1) getInfo is never called.

2) a is never equal to 2

3) There are errors in other javascript code on your page.

EDIT 4): Other people have pointed out that the content of $j may not be allowed in an alert box.

There is no way for anyone here to tell which it is.

share|improve this answer
2  
+1 W/o seeing how/if getInfo is called, this is unanswerable. – BNL Sep 7 '12 at 19:03

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.