I have a problem with bb.document

Hi
I have Code below:
index.jsp

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
@ taglib uri="http://java.sun.com/jsf/core" prefix="f"
@ taglib uri="http://www.backbase.com/2007/jsf" prefix="bjsf"

Insert title here

alert(bb.document.getElementById('main'));

when I run this jsp, error below:

1: GENERIC: Javascript error: "Object doesn't support this property or method".

why I can't use method "getElementById"!!

I use "jsf_4_0_1_client.war"!

Hi In version 4.0.1 I

Hi

In version 4.0.1 I believe you should use bb.getElementById() instead of bb.document.getElementById(). The bb.getElementById() was deprecated in version 4.1.

Hope this helps.

thanks

thanks