Hi,
my client was asking me to put a fullsize popup of a picture in the content window.
Something like :
<script language="javascript">
function popup (pic){
var win = window.open();
win.document.write("<img src='pic' height='100%' width='100%'/>");
}
</script>
<img src="my_pic.gif" height="50%" width="50%" onClick="popup('my_pic.gif');return false"/>
My client is suppose to create the content by herself without knowing HTML, and she would like to do it with your editor.
Is it something you can add to your editor ?
my client was asking me to put a fullsize popup of a picture in the content window.
Something like :
<script language="javascript">
function popup (pic){
var win = window.open();
win.document.write("<img src='pic' height='100%' width='100%'/>");
}
</script>
<img src="my_pic.gif" height="50%" width="50%" onClick="popup('my_pic.gif');return false"/>
My client is suppose to create the content by herself without knowing HTML, and she would like to do it with your editor.
Is it something you can add to your editor ?
Re: Adding pictures that include small size and full size.