<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Tagify - bug report template</title>
<meta name="author" content="Yair Even Or">
<script src="https://cdn.jsdelivr.net/npm/@yaireo/tagify/dist/tagify.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@yaireo/tagify/dist/tagify.polyfills.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/@yaireo/tagify/dist/tagify.css" rel="stylesheet" type="text/css" />
</head>
<body>
<label class="control-label" >Report</label>
<input>
<button type="button" onclick="readFromReport(this);">Read</button>
<button type="button" onclick="writeToReport(this);">Write</button>
<br> <br>
<label class="control-label" >Database field</label>
<input type="text" id="databaseField" value="">
</body>
</html>
// In my code, user info comes from a user database via ajax
// It retrieves the first name, last name and the database unique id for each
// person, this then populates the whitelist. Here I'm setting it manually.
// This is also the reason for my previous request concerning storing a
// database Id. So for example in the report box I could write :
//
// Today @lee matthews went somewhere.
//
// But on retriving the data i would read
//
// Today @123 went somewhere
//
var settings = {
mode : 'mix', // <-- Enable mixed-content
pattern : /@/,
enforceWhitelist : true,
whitelist : [ // <-- Set the initial whitelist, which will dynamically change as you type (see "input" event below)
{
value : 'lee matthews',
title : 'lee matthews'
}],
duplicates : true,
dropdown : {
enabled : 1
}
}
var input = document.querySelector('input');
var tagify = new Tagify(input, settings);
// I wish to write a report into the text box that will include user name tags,
// such as :
// Saturday, @lee matthews went shopping. Sunday @lee matthews went to the
// cinema.
// etc
// I then need to save that report to the database.
// If I put "hello @lee matthews" into the report field
function readFromReport(obj) {
var databaseField = document.getElementById("databaseField");
var report = document.querySelector('input');
databaseField.value = report.value;
}
// I can read that data ok by clicking "read", in the database field
// I get something like :
// hello [[lee matthews]]
// --
// I also need to be able to read that report back from a database and display
// it in the report field.
// The problem is that I cannot write back into the report field
// So if I modify my string in the database field such as :
//
// hello [[lee matthews]], how are you?
//
// And click "write", nothing changes in the report text box.
// It stays set as "hello @lee matthews"
function writeToReport(obj) {
var databaseField = document.getElementById("databaseField");
var report = document.querySelector('input');
report.value = databaseField.value;
}
Output
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. |