Skip to content

Instantly share code, notes, and snippets.

@bowetech
bowetech / index.html
Created June 17, 2021 14:24 — forked from chibaye/index.html
Move Items Between Two Select Lists Vanilla JS
<!--
Simplified version of this https://esausilva.com/2016/01/29/move-items-between-two-listbox-using-jquery-html-select-tag/ but using only vanilla JavaScript in script tag
-->
<div class="subject-info-box-1">
<select multiple="multiple" id='lstBox1' class="form-control">
<option value="ajax">Ajax</option>
<option value="jquery">jQuery</option>
<option value="javascript">JavaScript</option>
<option value="mootool">MooTools</option>
<option value="prototype">Prototype</option>
@bowetech
bowetech / Controller.php
Created May 23, 2016 18:41 — forked from milon/Controller.php
Delete Modal Popup with Laravel, Bootstrap and jQuery
public function index(){
$categoryList = Category::all();
return view('category.list')->with('categoryList', $categoryList);
}