Link to home
Start Free TrialLog in
Avatar of SaF3R
SaF3R

asked on

using insertAdjacentHTML and innerHTML in tandem.

I am currently using a script that writes everything in a div tag to a seperate frame's div tag using the innerHTML property. Instead of writing redundant information over and over I would prefer to use the insertAdjacentHTML command.  So basically I would have a function I could use similar to this.

parent.frames.frame1.document.getElementById("text").insertAdjacentHTML("beforebegin", innerhtmlhere);

where innerhtmlhere would refer to the current page's division tag and then it would be sent to the other frame's division tag, but would not overwrite the html code that was already inside.  It's somewhat tough to explain what I am looking for and Im still quite new to javascript so I am not sure who else to ask or where else to look.  Any help would be greatly appreciated.
SOLUTION
Avatar of Xxavier
Xxavier
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Netscape does not include the innerText or outerHTML properties as part of the Object Model  either. By usung the assignment operator you can out the innerHTML at either end of the receiver HTML as NetGroove has pointed out., bt simply ordering the stringexpession appropriately
Avatar of SaF3R
SaF3R

ASKER

Thanks to both of you for your help on this.  As I said I'm still quite new at this  and I did try using the concatenation method that you both proposed, but somewhere down the line I must have tripped myself up.  Im not sure who to give the points to on this one because both of you did add helpful pointers so I'll split'em.  It's amazing how much better this forum is than others, and Im grateful I tried here first.
Thanks for the points.

And I would like to encourage you to do the points splits also in the future.
From my point of view is this not a quiz who gives the fastest and best answer to catch the points.
It is more a way for you to say Thank You to those experts who invested their valuable time to help you to find your solution.

Of course is on experts side still the competition who plays best the game :-)

See you,
NetGroove

Avatar of SaF3R

ASKER

To anyone interested, it turns out that for my situation the insertadjacenthtml method was the only one to fully solve the problem I was having.  If you have image tags in the section you want to append to, they will reload each time you send information, which for me was undesirable due to a large number of images(also for security purposes they are coming from a db which is extra slow and can cause a serious slowdown if you're constantly loading and reloading images).  So when I used the insertadjacenthtml method, the images did not reload and everything works fine(for IE that is).
Thanks for sharing this information with us.