In many website we have seen that on checked or unchecked one box all the check box are checked or unchecked. Now in this article i am showing how to …
Blog Posts
Observer classes respond to lifecycle callbacks to implement trigger-like behavior outside the original class. This is a great way to reduce the clutter that normally comes when the model class …
We can include another html page using jquery load method example is as shown below <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Loading an Html page</title> <script src="jquery.js" type="text/javascript"></script> $(document).ready(function() …
In normal rails application contain one database,but if we want rails application having more than one database that is multiple data base. we can achieve this using multiple way.one …
Here it is how we can do that magic, if( isset($_GET[‘function’]) ) { switch( $_GET[‘function’] ) { case ‘dosomething’: dosomething(); break; case ‘dosomethingelse’: dosomethingelse(); break; } } And then link …