How To Click Through an Overlay jQuery – Part 2

In the last tutorial we talked about one method with which you can click through an overlay by jquery or other structure. As I said in the part one of this tutorial that method where you use css to achive this is not so good because you don’t have that much control about the element… Continue reading How To Click Through an Overlay jQuery – Part 2

How To Click Through an Overlay jQuery

Sometimes doe to the requirements of a project you need to implement a functionality when you need to click through an overlay to get the element behind that overlay, this can be achived in many ways but for me only one method worked. As I said there are a lot of methods to do that,… Continue reading How To Click Through an Overlay jQuery

How To Add Link in Contact Form 7 Checkbox

In this tutorial I will show you how to add a link in a contact form 7 checbox. Now we need more than ever to add links in checkboxes due to new GDPR rules because the user must agree with our terms and conditions and we need to have the proof they accepted them.  If… Continue reading How To Add Link in Contact Form 7 Checkbox

How To Add New Option In WP Options WordPress By Ajax – Plugins Development

In this tutorial we will talk about how to add new option in wordpress table named wp options by ajax. I have just used this approach in one of my plugins and I decided to show you an example if you ever need it. It’s very simple to use this options and is very useful… Continue reading How To Add New Option In WP Options WordPress By Ajax – Plugins Development

Implement WordPress Pagination From Scratch

In this article you find all the necessary code to implement wordpress pagination in your blog, or on a custom template. It does not matter if you query for normal wordpress posts or for a specific custom post type. First of all you need to make a query to get posts you need to show… Continue reading Implement WordPress Pagination From Scratch

itemAdded issue Bootstrap tags

To the current project I am working on I had to add this functionliaty, and let the users add their owns tags when they need. All the implementation of this plugin was a success I implemented the itemAdded event too, but when I tested the predefined tags I saw this event is triggered even if… Continue reading itemAdded issue Bootstrap tags

How to add tags functionality to text input

Once in a while you need to implement a tag functionlity, where you will be able to add any tag you need then send it by a form or ajax in a server side to save it in a database. In this article I will show you how I did when I had to implement… Continue reading How to add tags functionality to text input

How to kill a running process in linux CENTOS

In last article we used the command to get all running process from our server. In the following I will show you how to kill a process which is running in the background in centos. To achieve this you only need a two words command, the command “kill” followed by the PID of the process,… Continue reading How to kill a running process in linux CENTOS

How to list all running processes in linux CENTOS

In each server there are a lot of running processes which help the system work corectly. In some cases you can run your own script to achieve a certain functionality, if you run the script in background that means it will run all the time, after the server restart, the script will start with the… Continue reading How to list all running processes in linux CENTOS

How to decode HTML characters in variable

Let’s say you get some JSON response back and it has a lot of HTML characters. You need to decode HTML characters to normal text in order to append the new value to front end. The following JSON response is an example of html characters you could recieve from php. { “message”: “We're unable to… Continue reading How to decode HTML characters in variable

Published
Categorized as HTML, jQuery