Javascript toolkit recommendations for Blackberry OS 4.6+

226 Views Asked by At

I'm looking for javascipt toolkit for Blackberry OS 4.6 and above (but must be 4.6 comptible!) for business applications. XUI looks interesting but can'y find examples or more than 1 page of documentation. Anyone have experience/examples with XUI?

1

There are 1 best solutions below

0
On

Yes i do have some experience and xui 2.0 has blackberry OS 4.6 support.

Example:

x$(window).on('load', function() { 
    x$('#button').click(function () {
        alert('Hello');
    });
});