Dynamic Dependent Select Box Using jQuery,Ajax and PHP

Dynamic Dependent Select Box Using jQuery,Ajax and PHP

In this tutorial, we will see how to create a cascaded dropdown list or a dependent dropdown list or dependent Select Box list in PHP using JQuery and AJAX. Dependent dropdown is generally used for country,state and city dropdown where state is related to country and city is related to state.In dependent select box we … Read more

Disable Right Click Cut, Copy and Paste Using jQuery

As a website visitor you have seen that many sites restrict to copy web page content. In this tutorial we will discuss how to restrict your webpage content being copy. Basically there two option to restrict from content copy of your website. But before proceed we must know this would not work when JavaScript is disabled … Read more

Send Form Data as JSON via AJAX with JQuery

Send Form Data as JSON via AJAX with JQuery

In previous post we have seen how to send data in serialized form with ajax using searialize() method. Now we will see how to post json data with ajax using serializeArray(). Before proceed we must know what is the difference between serialize() and serializeArray(). serializeArray creates an array and serialize is used to mean a … Read more

Dynamically Change Form Action Based on Select Option Using jQuery

In this article we are discussing about how to change form action based on select option using jquery in HTML. Here in this article you will learn how you can change form action dynamically selecting by drop down option value step by step. This form action change related with drop down value used in search … Read more