How To Paste From Excel To Multiple Inputs Using jQuery

In order to be able to paste from excel to multiple inputs, you will have to split the whole string in an array and then just change the value of every input. Let me show the code you need to add:

How to Implement Tabs jQuery From Scratch

In this tutorial we will implement tabs in jquery from scratch without any plugin. This is a very basic task because in a few lines of code we will be able to implement this functionality. Before proceed with the implementation please make sure you already have jquery added to your website, if not go on… Continue reading How to Implement Tabs jQuery From Scratch

How to Make Smooth Scroll Anchor Links WordPress No Plugin

In order to create a smooth scroll anchor links functionality in wordpress we have to complete few steps. It’s not very hard to achive this feature, even if you are begginer with wordpress it shouldn’t be a problem to implement this menu in your website. Smooth Scroll Anchor Links WordPress No Plugin First step is… Continue reading How to Make Smooth Scroll Anchor Links WordPress No Plugin

How to Create Image Gallery With jQuery and magnificPopup

Maybe the easiest way to create an image gallery with jquery is using magnifc popup because with just few lines of code you will be able to create a nice image gallery with pagination buttons and fully compatible with all major browsers.  To be able to implement this functionality you will have to download magnific… Continue reading How to Create Image Gallery With jQuery and magnificPopup

How To Validate Contenteditable Based On Value

Contenteditable is a pretty new feature which allow you to transform any html element like div, td, th, p, span and so on in a textarea. You can use this feature in all major browsers and with few lines of jquery you can manipulate in any way the value from the div. Also you can… Continue reading How To Validate Contenteditable Based On Value

How to Make Animated Counter Using jQuery

In this tutorial I will show you how to implement a custom animated counter using just html css and jquery, no plugin. To achieve this functionality we will have to get the jquery library and add it to the website, and create 3 new files. index.html, style.css and main.js Animated Counter Using jQuery steps: First… Continue reading How to Make Animated Counter Using jQuery

How to add dynamically options in selectize select using ajax

In this tutorial I will show the code you need to create in order to add options to your selectize select using ajax. Even if selectize has a lot of documentation this is not easy using to implement using it maybe it more easier to implement some features if you look directly in the source… Continue reading How to add dynamically options in selectize select using ajax

How To Paste Image On Textarea With jQuery

In this tutorial I will show you how you can upload by ajax an image after you paste it on textarea using jquery. Is very useful this feature because you don’t lost any time when it comes to send files to other person. Especially when you do a printscreen using windows tool, you just copy… Continue reading How To Paste Image On Textarea With jQuery

How To Keep An Element At The Top Of Its Parent jQuery

To keep an element sticky you will have to use fixed position in css but to keep an element at the top of its parent we will have to use some javascript because we can’t to that only with css only if the structure will allow us to that. In some cases due to auto… Continue reading How To Keep An Element At The Top Of Its Parent jQuery