I have a Jsp file in my Websphere 8 theme that contains some javascript that I want to execute only when the user has logged in. I have tried to add the portal logic tags to the script block but it does not work:
<portal-logic:if loggedIn="yes" screen="Home">
<script>
function(){
var test = testData;
if(test) {
do something...
}
</portal-logic:if>
Am I missing something?