access div tag through Blackberry Browser
I have following Pseudo-HTML
<HTML>
<HEAD>
<script>
function Display()
{
div1.innerHTML = 'Changed HTML';
}
</script>
</HEAD>
<BODY>
<FORM>
<input type="button" onclick="Display()">
<div id="div1" name="div1">Test</div>
</FORM>
</BODY>
</HTML>
This code works for IE as I can directly access div1
How to access div1 in BlackBerry Browser???
As I cant directly access div1
help me
|