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
3 July, 2009 - 12:21 — SenakaHi
In version 4.0.1 I believe you should use
bb.getElementById()instead ofbb.document.getElementById(). Thebb.getElementById()was deprecated in version 4.1.Hope this helps.
thanks
20 July, 2009 - 08:49 — txj301thanks