Hi gurus,
i added a HTML item in my report page. and entered this.
<script type="text/javascript">alert("hello")</script> then save & Run.
but it is not prompted the message when i run the report. any one please let me know how to get that o/p on my report
You have missed a semicolon after the alert and you have to replace the double quotes " with "
for example
<script type="text/javascript">alert("hello");</script>