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