Showing posts with label JQuery. Show all posts
Showing posts with label JQuery. Show all posts
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 replace all occurrences of a string in JavaScript

How to replace all occurrences of a string in JavaScript

Generally, we use the replace() function to replace the particular word phrase. This does not work for replacing all occurrences of a string. i.e replace() is replaces only first matching word phrase only. For example "How to replace all occurrences of a string in JavaScript". Here I want to replace the space with "-" 'in all occurrences....
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...