etc.

이미지맵으로 이메일보내기 및 프린트하기 소스(태그)

dehas 2014. 1. 16. 13:19

<img src="이미지.jpg" border="0" usemap="#map">

 

 

<map name="map">
<area shape="rect" coords="10,10,10,10" href="JavaScript:print_page();" alt="프린트하기" onFocus="this.blur()">
<area shape="rect" coords="20,20,20,20" href=mailto:메일주소 alt="메일보내기" onFocus="this.blur()">
</map>

 

 

<script>
function print_page() {  
window.print();  
}  
</script>