blackberry support?

blackberry support?

Hello, I'm new to the site and looking for some guidance. I'm developing a database driven site, and the users want a blackberry version. I ended up using the compressed version of jquery, as the full version causes blackberries to become unresponsive. When I test the site using the full jquery file (and a blackberry emulator from RIM that doesn't choke on the file size), I can use things like .get to get and display info from another page without having to leave the current page. However, once I downgrade to the compressed version of jquery I am no longer able to perform such actions.

Does anyone have any thoughts?

An example of the code that fails with the compressed version but works with the full version is below:

$.get("some_page.php",{var1: "sth"}, function(data) {
$("#some_div").html(data);
});

Thanks in advance for any thoughts!