Snippets

Glauco Pater Sorrt

Created by Glauco Pater

File Sorrt.html Added

  • Ignore whitespace
  • Hide word diff
+<style>
+/*style.css*/
+body {
+    text-align: center;
+    background-color: #3c6dc5;
+    color: white;
+    font-family: helvetica;
+}
+
+h1 {
+    margin-top: 100px;
+}
+
+ul {
+    display: inline-block;
+    cursor: move;
+    text-align: left;
+    width: 300px;
+    max-width: 100%;
+}
+
+li {
+    color: lightgray;
+}
+
+li:first-child {
+    font-size: 130%;
+    color: white;
+}
+
+input[type='submit'] {
+    background-color: red;
+    border: 0;
+    color: white;
+    padding: 5px 10px;
+    cursor: pointer;
+}
+
+
+input[type='button'] {
+    background-color: orange;
+    border: 0;
+    color: white;
+    padding: 5px 10px;
+    cursor: pointer;
+}
+</style>
+
+<script>
+/*main.js*/
+$(document).ready(function ($) {
+
+    addNewValue = function (newTask) {
+        var newLi = $('<li>' + newTask + '</li>');
+
+        newLi.on('click', function () {
+            $(this).remove(); // Attach the event handler *before* adding the element
+        });
+
+        $('ul').addClass('listitems').prepend(newLi); // To put the new task at the top of the list
+        $('.input').val('');
+
+
+    }
+
+
+    $('form').submit(function () {
+        var newVal = $('.input').val();
+        if (newVal !== '') {
+            if (!isNaN(parseFloat(newVal))) {
+                addNewValue(newVal);
+            }
+            return false; // So the change persists
+        }
+    });
+    $('ul').sortable(); // Because what good is a to-do list that you can't sort? :)
+
+    $('input:button').click(function () {
+        sorrt();
+    });
+
+    function sort_li(a, b) {
+        return ($(b).text() < $(a).text()) ? 1 : -1;
+    }
+
+    function sorrt() {
+        var orderedlist =
+            $("ul.listitems li").sort(function (a, b) {
+                return $(b).text() - $(a).text()
+            });
+        orderedlist.appendTo('.listitems');
+
+        var orderedListValues = [];
+        $(orderedlist).each(function () {
+            orderedListValues.push($(this).text());
+        });
+
+        window.localStorage.setItem("sorrt", orderedListValues);
+    }
+
+    function getStorage() {
+        return window.localStorage.getItem("sorrt");
+    }
+
+    var storage = getStorage();
+    console.log(storage);
+    if (storage != null && storage != '') {
+        $(storage.split(",")).each(function (index, val) {
+            console.log(index.val);
+            addNewValue(val);
+        });
+
+    }
+});
+
+</script>
+<body>
+    <h1>
+SORRT
+</h1>
+
+    <form>
+        <label>Enter a new value:</label>
+        <input class="input" type="number">
+        <input type="submit" value="Add">
+        <input type="button" value="Sort">        
+    </form>
+    <ul title="Click to delete; drag to reorder">
+    </ul>
+    <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
+    <script src="http://code.jquery.com/ui/1.11.0/jquery-ui.min.js"></script>
+    <!-- <script src="main.js"></script> -->
+</body>
  1. 1
  2. 2
HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.