<html>
<head>
<meta name="description" content="Concatinate multiple textareas live." />
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<input id="currentFrame" value="234">
<button id="addFrameBtn">Add Frame Note</button><br>
<div id="notesContainer"></div>
<div id="render"></div>
</body>
</html>
var renderArea = document.getElementById('render');
var button1 = document.getElementById('addFrameBtn');
var input1 = document.getElementById('currentFrame');
var notes;
var data = [];
var refresh = function (){
var result = "",
frange,
content,
i;
// Empty Array
data = [];
for(i=0;i<notes.length; i++) {
frange = notes[i].getAttribute('data-frange');
content = notes[i].value;
data.push({f:frange, c:content});
}
render();
};
var addNote = function(e){
var attr = input1.value;
var n = document.createElement('textarea');
var p = document.getElementById('notesContainer');
removeNoteListeners();
n.className = 'note';
n.setAttribute('data-frange', attr);
p.appendChild(n);
addNoteListeners();
refresh();
};
var refreshNotesArray = function(){
console.log("refresh");
notes = document.getElementsByClassName('note');
};
var removeNoteListeners = function(){
var note,i;
for(i=0; i<notes.length; i++){
note = notes[i];
note.removeEventListener('keyup', refresh );
}
};
var addNoteListeners = function(){
var note,i;
refreshNotesArray();
for(i=0; i<notes.length; i++){
note = notes[i];
note.addEventListener('keyup', refresh, false );
}
};
var focus = function(i){
console.log(i);
notes[i].focus();
};
var syncDiv2Textarea = function(div, i){
var content = div.innerHTML;
notes[i].value = content;
};
var render = function(){
var arr = data;
// Clear Contents
while (renderArea.firstChild) {
renderArea.removeChild(renderArea.firstChild);
}
//Build Divs
for (i=0; i<arr.length; i++){
str = "";
if(arr[i]){
if(arr[i].f) str = str + arr[i].f;
//if(arr[i].f) str = str + "-" + arr[i].f;
var div = document.createElement('div');
var label = document.createElement('span');
var content = document.createElement('div');
label.innerHTML = str;
content.innerHTML = arr[i].c;
div.className = "noteRender";
label.className= "noteLabelRender";
content.className = "noteContentRender";
div.appendChild(label);
div.appendChild(content);
renderArea.appendChild(div);
content.contentEditable = true;
(function(content, i, str) {
content.addEventListener("keyup", function(e) {syncDiv2Textarea(content, i);});
content.addEventListener("focus", function(e) {console.log(str);});
})(content, i, str);
}
}
return;
};
var init = function() {
button1.addEventListener('click', addNote );
addNoteListeners();
refresh();
};
init();
Output
300px
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |