I have been looking at OpenLaszlo and observed that scripting in the client is implemented in JavaScript. Does this mean it is possible to use libraries like JQuery and PrototypeJS ?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

jQuery and Prototype rely heavily on the browser's DOM API, not just JavaScript. I am not very familiar with OpenLaszlo, but if it doesn't provide a DOM for manipulating the document to be output, then libraries oriented around abstracting cross-browser DOM incompatibilities will be less useful. Aptana's Jaxer web server claims to allow you to manipulate the DOM before it is sent to the client, even with event listeners and animations. It may be worth a look.

link|improve this answer
feedback

Directions on using JQuery with other Libraries: http://docs.jquery.com/Using_jQuery_with_Other_Libraries

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.