Link to home
Start Free TrialLog in
Avatar of crsfs
crsfs

asked on

Including JavaScript References in SSRS

I'd like to add the code below into an SSRS report.  Is it possible?  What would I need to do?  I don't need specifics, I just need to be prepared for another team's answer as to whether they think it's possible.  I don't even have SSRS to test.  Thought I'd toss it out here.

Didn't see anything on Google except for javascript popup links and whatnot.  I think it might be called inline JavaScript?

Thanks,

Mark
<script type="text/javascript" src="http://www.testsite.com/knockKnock/jquery.js"></script>
<script>$(document).ready(function(){
		  $.get("http://www.testsite.com/knockKnock/whosThere.asp", { 
		    userName: "testUserName", 
		    visitSystem: "testSystem", 
		    visitTime: "testTime", 
		    pageURL: "testURL", 
		    pageVars: "testVars"} );});
</script>

Open in new window

ASKER CERTIFIED SOLUTION
Avatar of EugeneZ
EugeneZ
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial