"Close" button on the page.
        Posted  
        
            by TRAVA
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by TRAVA
        
        
        
        Published on 2010-04-17T23:05:26Z
        Indexed on 
            2010/04/17
            23:13 UTC
        
        
        Read the original article
        Hit count: 203
        
Is there any possibility to make a link or a button to close the current page? Like I have this:
<div id="arrows">
        <a href="It works"><div id="arrow_left"></div></a>
        <a href="It works too"><div id="arrow_right"></div></a>
        <a href="??? =("><div id="arrow_close"></div></a>   
</div>
And this if it's necessary this:
#arrow_close{
height: 7px;display: inline;float: left;width: 7px;
background: url(../i/close-20.png) no-repeat;
}
And I want to close the page with a button "close".
© Stack Overflow or respective owner