jQuery Copy To Clipboard
ZeroClipboard is a library that provides you with a way of coping text to your clipboard using Adobe flash and a Javascript interface. Flash can
ZeroClipboard is a library that provides you with a way of coping text to your clipboard using Adobe flash and a Javascript interface. Flash can
Recently i have worked on language translation project for that i need to read emails using PHP From the gamil inbox based on the email
Laravel allowing us to extend the HTML facade with additional functionality. we use the HTML::macro() method to extend the HTML facade with our own methods.So
function titleRestrictionFilter($title){ global $post; $title = $post->post_title; $restrictedWord = "forbidden"; if (stristr( $title, $restrictedWord)) wp_die( __('Error: This title is containing restricted word') ); } add_action('publish_post',
function titleLimitChar($title){ if(strlen($title) > 55 && !(is_single()) && !(is_page())){ // not in single post page and page. $title = substr($title,0,55) . ".."; } return $title;
CodeIgniter default environment is development and so error reporting by default in turn on state, if you want to turn off reporting then change the
CodeIgniter : https://github.com/bcit-ci/CodeIgniter.git I hope you like this Post, Please feel free to comment below, your suggestion and problems if you face - we are
Here is a custom HTML macros for Facebook Open Graph meta tags. if you don’t had any idea about FB open Graph meta tags ,
There are times when you have huge data in table , and you my want to replace some text with something or you may be
Here is the class list of Twitter bootsrap3 .navbar .caret .label .table .img-responsive .img-rounded .img-thumbnail .img-circle .sr-only .lead .text-muted .text-primary .text-warning .text-danger .text-success .text-info .text-left
Sending Ajax requests to server with JQuery library is pretty easy. We just need to include JQuery in your page after that we can use
$ci =& get_instance(); // instance of the CI super variable $ci->router->fetch_class(); // for controller name $ci->router->fetch_method(); // for method name I hope you like this
Using the below methods you get controllers and action names in the CodeIgniter. You can access with below since the above methods are deprecated. I
Method chaining means that you can chain method calls in one single statement.All the methods are mutator methods which will return the original object or
var image = document.getElementById('my_image'); var width = image.naturalWidth; var height = image.naturalHeight; I hope you like this Post, Please feel free to comment below, your