Showing posts with label HTML. Show all posts
Showing posts with label HTML. Show all posts
How to get the checked value of the radio button in javascript

How to get the checked value of the radio button in javascript

Hi, In This tutorial you will learn about "How to get the checked value of the radio button in javascript". If working on the javascript to get the values of the radio buttons it some times gets the not checked value or same value can be retrieved. Because when you write the radio buttons code any radio button is checked default <input type="radio"...
How to add the Save to Google Drive Button to your web page

How to add the Save to Google Drive Button to your web page

Hi, In this tutorial, I am going to show you how to add the save to google drive button in your web pages. This is a simple procedure it enables your website to allow your users to save files to their Google Drive . by configuring the save button. It is the simplest way to display the save to drive button on your page. You need to load some javascript...
How to display Loading Image with changing some text while Page Loads using Jquery and CSS

How to display Loading Image with changing some text while Page Loads using Jquery and CSS

In this tutorial, I am going to show you how can you set an animated loading image with some text changing while page loads using Jquery and CSS. It is a great idea to show a cool animated image with changing some text until your website is loading. This idea can implement it on the user registrations. Generally, we do after the user registration...
How to convert the HTML content into an image using jquery

How to convert the HTML content into an image using jquery

Hi, In this tutorial, I am going to explain, How to convert the HTML content into an image using jquery. If anybody wants to save / convert the HTML content as an image this code can be helpful.There is a jquery plugin i.e html2canvas, By using this plugin we can easily convert the HTML content of any part i.e a particular div content also to image. This...
How to download and apply a web font in CSS

How to download and apply a web font in CSS

Hi, In this tutorial, I am going to teach you how to download and apply a web font in CSS. Generally, web fonts allow the designers to use the font without installation on the user's computer. We have to use our own fonts by using the @font-face rule This @font-face rule is supported by the all major browsers, Chrome, Internet Explorer, Mozilla,...
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...