Today i will show you how to use one Jquery function to show all bootstrap messages in whole application you don’t have to copy paste the whole bootstrap message structure just call the function with parameter. function showalert(message,alerttype) { if…
Simple shopping cart with HTML5 Drag and drop and Javascript
Today i will show you simple shopping cart with Pure JavaScript and HTML drag and drop function getId(id){ return document.getElementById(id); } function dragStart(event){ event.dataTransfer.setData(‘text’,event.target.getAttribute(‘id’)); } function dragDrop(event){ event.preventDefault(); var productQuantiy = 1; var dropId = event.target.getAttribute(‘id’) var data = event.dataTransfer.getData(‘text’);…
ToDoList with JQuery and HTML5 Localstorage
Today i will show you ToDoList using jQuery, HTML5 Localstorage. This is the script document.getElementById(‘myForm’).addEventListener(‘submit’,saveToDo); function saveToDo(e){ elementValue = document.getElementById(‘todoId’).value; if(!elementValue){ alert(“You must enter a value in the New Task field”) return false; } var todo = { name:elementValue }…
Customize bootstrap sass
Today i will show you how to install sass through NPM in Windows and customize bootstrap sass for your next project. Open you cmd prompt and type npm install -g node-sass to run npm command you have to install node.js…
Web Application Prototype with bootstrap and kendo UI
I have created prototype for web application using bootstrap and kendo UI for structure i have used bootstrap and for controls i have used both bootstrap and kendo ui controls see the link of….. demo