Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts
How to embed youtube video on your website with custom controls

How to embed youtube video on your website with custom controls

Youtube is the most popular video sharing website.Here you can create a channel for free and upload your videos and promote it easily. Officially youtube API gives the iframe code to the website,this code can be placed where you want to display it. Youtube iframe API has several controls are there, those are autoplay,loop,controls. In general youtube...
How to make a windows GUI application with Html

How to make a windows GUI application with Html

Hi, In this tutorial i will explain you how to create the basc GUI application in windows using html. Genarally we are saving the html code as .html or .htm but when you creating the windows GUI (Graphical user interface) application it should be save as .hta extension. Now just follow these steps to create the GUI application using html Step #1...
How to show a confirm message before delete using javascript

How to show a confirm message before delete using javascript

Generally When you perform the CRUD operations  on any application . To warn a user when user trying to remove / delete anything from the displayed data from the database. I.e " Are you sure you want to delete this item ? ". When user click on the remove link it will pop up the confirm message . Here user press on the ok key then that item...
How to integrate the Jquery Datetimepicker in HTML

How to integrate the Jquery Datetimepicker in HTML

Generally we integrate the datepicker in jquery. it gets only the date but if you want to place the time along with the date use the datetimepicker instead of datepicker. In jquery has only the datepicker . you need the datetimepicker then you must load the timepicker addon. You need to load these CSS files http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/smoothness/jquery-ui.css https://cdnjs.cloudflare.com/ajax/libs/jquery-ui-timepicker-addon/1.4.5/jquery-ui-timepicker-addon.css And...