the details are in my question...
when using a Highslide popup pre, code and textarea HTML tags render the HTML instead of simply displaying the HTML code
Main Topics
Browse All Topicsany ideas how I can go about modifying the highslide library to stop rendering the HTML in some of my popups?
It seems that is I use pre, code, or textarea tags, the ajax popup renders the HTML.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Sorry, I was busy.
If I understand your problem correctly, you don't want the highslide to render some of your HTML such as TEXTAREA, PRE and others, you want to show the code for your website visitors.
In this case you don't want to modify the library, you only want to use the equivalent of the > and < delimiting HTML tags, for example <textarea></textarea> to show the TEXTAREA tag,
If you want to alter the library, the file name is highslide-with-html.js and the line afftected is 1458
node.appendChild(cNode);
You can process cNode which contains the DIV having your html, for example you can replace this line with:
cNode.innerHTML="My new text";
node.appendChild(cNode);
highslide will render "My new text" in stead. I tried to run:
cNode.innerHTML=cNode.inne
node.appendChild(cNode);
However, innerText is undefined. You can write you won function to convert your html to normal text and passed to cNode.innerHTML.
I hope this helps.
Business Accounts
Answer for Membership
by: profyaPosted on 2009-09-25 at 15:53:03ID: 25427940
If you provide me with much more details I will be thankful.