I've a PHP session variable, $_SESSION['user'], alive throughout the session. In the head section, I've my JavaScript file included, scripts.js. 
How do I pass the session variable into the JavaScript file if I want something like the following.
$.("#btn').click (
     function() {
        alert('<?php echo $_SESSION['user']; ?>');
     }
)
As the <?php ?> isn't recognized in the JavaScript file, the code above doesn't work. So I've to put in the PHP file itself, but how do I keep it in the JavaScript file?
 
     
     
     
     
    