Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
    <head>
        <meta charset=utf-8 />
        <title>JS Bin</title>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js" type="text/javascript"></script>
        <script src="http://tinymce.cachefly.net/4.0/tinymce.min.js"></script>
        <script type="text/javascript"> 
  
            tinymce.init({
                'selector': "#divID"
            });
            function test() {
                alert("tinymce is "+typeof tinymce
                +"\ntinymce.editors is "+typeof tinymce.editors
                +"\ntinymce.editors['divID'] is "+typeof tinymce.editors['divID']
                +"\ntinymce.get('divID') is "+typeof tinymce.get('divID'));
            }
            
            $(function() {
                test();
                $('#bottonID').click(function(){
                tinymce.editors['divID'].hide();
                });
            });
            
        </script>  
    </head>
    <body>
        <div id="divID"></div>
        <button id="bottonID">Click</button>
    </body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers