If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

prob with java script?

Started by everlearner, 25 Jun 2012 07:11:58 AM

Previous topic - Next topic

everlearner

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

pricter

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>