Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!DOCTYPE html> <title>My Example</title> <style> div { color: white; padding: 10px; margin: 20px; } .file { background: limegreen; } .folder { background: gold; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <script> $( function() { $( ".file" ).click( function() { $( this ).clone().prependTo( ".folder" ); }); }); </script> <div class="file"> File </div> <div class="folder"> Folder </div>
Preview