Hi,
The webscreen javascript is for you to write javascript statements that support the webscreen. This means that you can't reference another javascript file in it.
To solve your problem, you can do one of the following:
- Copy the contents of the jquery-1.3.2.min.js into the webscreen javascript. This way jquery will be available in the web screen.
- Create a reusable webblock named "jquery" and set its webblock javascript as the contents of the jquery-1.3.2.min.js file. This will allow you to reuse jquery in every screen you wish by simply adding the webblock to the screen.
Another remark: to obtain a widget runtime identifier in the final html, you can use <WidgetName>.Id in an Expression, rather than adding the "wt" prefix to the widget name. So in your case, the alert expression would be:
"alert($('#" + div_test.Id + "').text())"
Thank you!