|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
what can I use to contain dynamically changing content
so far I have tried using innerHTML and an iframe, each without sucess.
any other ideas as to what html objects can have their content dynamically changed? |
|
#2
|
|||
|
|||
|
RE: what can I use to contain dynamically changing content
Any form element will allow a dynamic content change!!
|
|
#3
|
|||
|
|||
|
RE: what can I use to contain dynamically changing content
You could use a large textarea field and then use CSS to make it look nice(font etc)...no html formatting though...
|
|
#4
|
|||
|
|||
|
RE: what can I use to contain dynamically changing content
For a dynamic text you can use innerText too.
|
|
#5
|
|||
|
|||
|
RE: what can I use to contain dynamically changing content
try the DOM methods, such as document.createElement
you can add elements to any other element (such as a div) on the page. I read your other issues regarding writing images through innerHTML, and the problem with those images not showing. This is a known IE issue. I usually try to stay away from innerHTML and use DOM methods to add dynamic content, that way I haven't had that kind of trouble sofar... |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > what can I use to contain dynamically changing content |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|