Basic jquery

jquery with toaster

by jimkennelly

HTML

<script src="https://code.jquery.com/jquery-2.2.0.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/js/toastr.min.js"></script>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/css/toastr.min.css">
<input id="test" />


<input id="tes111" />

JavaScript

$(document).ready(function() {
$("#tes111").focus();
toastr.info('Record added to timesheet ')
});