Jquery show div on click

In this tutorial we are going to discuss about how to show div on click a button in Jquery. This is very easy to show div on click event of button. You have to use JavaScript library file (Jquery.js) for show div. . Let us see example. Demo <html> <head> <script src=”jquery.js”></script> <script> $(document).ready(function(){ $(“button#mybutton”).click(function(){ … Read more

How to create a custom page in OpenCart

Create custom page in OpenCart Going to discuss about how to create custom page in opencart. Actually Opencart is built from MVC (Model View Controller).Opencart works on the flow of MVC.So, to create a custom page we must follow MVC pattern. M – Model -Load Model for query with database tables. V –View – View … Read more

How to change WordPress admin URL

How to set Custom Admin Login URL of WordPress Try to change WordPress admin url or any other url to secure your website. WordPress default login url is wp-login.php. Everyone commonly knows about default admin path like wp-admin these common uses of wordpress increases the chances of hacking on WordPress site. No one think about … Read more