Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

cannot run this code ... php textarea is showed but only one click and everything is disappear

Note:the page is positioning by anchors and words in "{}" are tags. On оne page I am trying to put more than one ACEtextarea (jQuery function is just a thought)

<div id="{id_area}" style="width:100%;height:165px; position:relative; background:#fff;" class="">
    {text}  
</div>
    <input type="hidden" name="{name}" id="{id_area}-textarea"/>    
    <script src="{dir}/src/ace.js" type="text/javascript" charset="utf-8"></script>
    <script src="{dir}/src/theme-crimson_editor.js" type="text/javascript" charset="utf-8"></script>
    <script src="{dir}/src/mode-php.js" type="text/javascript" charset="utf-8"></script>
 <script>
    window.onload = function() {
        var editor_{id_area} = ace.edit("{id_area}");
        editor_{id_area}.setTheme("ace/theme/crimson_editor");  
    var {id_area}_Mode = require("ace/mode/php").Mode;
    editor_{id_area}.getSession().setMode(new {id_area}_Mode());

    jQuery("#{id_area}-textarea").val(editor_{id_area}.getSession().getValue());
    };
    </script> 
share|improve this question
2  
It's very hard to determine what you mean. Do you have an online code sample? – Jan Jongboom Mar 28 '12 at 14:43
I export a html page, here is it: Note: javascript is too slow like this way... [link]fire1.eu/bin_/simple_problem.html Click "MENU" -> (script icon (additions)) -> and try to write.... (If you get message "Method Not Allowed" just refresh the page.) – fire1 Mar 31 '12 at 18:43
also any advice and suggestions are good for me. – fire1 Mar 31 '12 at 18:45
1  
Can't see it, the scripts point to dev.11818.bg/design/scriptarea/cloud9/src/ace.js which probably is a local file. – Jan Jongboom Apr 2 '12 at 9:09
Now the file is moved to dev.11818.bg [link]dev.11818.bg/problem/simple_problem.html Sorry for my crap... but I'm working on 3 projects on same time... – fire1 Apr 2 '12 at 10:45

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.