Find location of php.ini using Terminal in Server Ubuntu on 02:47 No Comments To get Location of php.ini file using terminal Run the following command in terminal php --ini if php is install...
Set Checkbox checked or unchecked using jQuery in jQuery on 02:43 No Comments Set Checkbox checked or unchecked using jQuery ...
How to Reload Page on Anchor or label click ?? in jQuery on 02:42 No Comments How to Reload Page on click?? Html Code: <div id="test"> <p>this...
How to write a Simple jquery Code in jQuery on 02:40 No Comments How to write a Simple jquery Code ?? Html code: <input type="text" id="testid" class="testclass"...
How to add selected or active class to menu ?? in jQuery on 02:39 No Comments If you want to add class selected or active to your menu just add the script in your project Add jquery library...
Get Image Name from url using jquery in html jQuery on 02:37 No Comments First add the jquery file by including following following line Jquery library: <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script> Html: ...
Check div or any tag has html or not in jQuery on 02:24 No Comments Check div or any tag has html or not <div id="box3"> </div>$(document).ready(function(){ ...
Smooth scroll using jquery in html jQuery on 05:21 No Comments Smooth scroll using jquery <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script> <div...
IPTUX to run in background by mistake. in Ubuntu on 00:10 No Comments IPTUX to run in background by mistake. Steps to resolve this#1 show hidden files#2 open %gconf.xml file located on...
How to remove extra space from starting and ending of a string in jQuery on 02:12 No Comments How to remove extra space from starting and ending of a string Simple write the following script: jQuery('#your-form-id...
Wrap all into one div in jQuery on 07:24 No Comments How to wrap all into one div Html <div class='main'> <div class="a">a<div> ...
Get Ip Address of website in Server on 07:16 No Comments How can I get the Ip Address of a website Here are the providers link that give the Ip from website domain IP &...
How to add class external to anchor that has href to other sites in html jQuery on 06:54 No Comments Add class external to anchor that has href to other sites and target _blank to open them to new tab jQuery jQuery('a').filter(function()...
Confirm before delete in html javascript jQuery on 06:44 No Comments Confirm before delete Html: <a href="delete.php" onclick="return doconfirm()">Delete</a> Javascript...
Add class depending href of anchor in jQuery on 06:38 No Comments Add class depending href of anchor from current url This jquery will add class active to anchor tag having that href ex....
Enable htaccess if not enabled on your server in Htaccess Server on 05:52 No Comments "Page Not Found" Errors on every page except homepage. Site is hosted on digital ocean or have file structure as var/www/html/yoursite Enabling...
How to create Login Logout functionality with session ? in Codeigniter Session on 06:31 No Comments How to create Login Logout functionality with session ? In Few Basic Steps we can create Login-Logout with session Step...
Change Upload limit using htaccess in drupal in Drupal Htaccess on 06:23 No Comments Change Upload limit using htaccess in drupal find for mod_php5.c and add these two lines php_value upload_max_filesize...
Remove all p tag contains space in jQuery on 01:13 No Comments How to remove all p tag contains space Solution : jQuery('p').each(function(){ var htm=jQuery(this).html(); ...
To sort item alphabetically in jQuery on 01:12 No Comments To sort item alphabetically using jquery Html: <ul id="list"> ...
Remove all empty tags in class in jQuery on 01:06 No Comments How to remove all empty tags in class Solution: jQuery(function() { jQuery(".region-content p:empty").remove();}); I...
Add css depending on device in jQuery on 01:01 No Comments How to add css depending on device like ipad, android, desktop etc ? Solution: jQuery(document).ready(function(){ ...
Create page tpl for taxonomy vocabulary in Drupal on 00:57 No Comments How to create page tpl for taxonomy vocabulary Solution: find for themename_preprocess_page add this is template.php if...
Lock may available Drupal in Drupal Drupal 8 on 00:54 No Comments How to remove error lock may available in drupal Drupal showing me an error includes/database/database.inc on line 2171 open...
Get field value in Form alter drupal 8 in Drupal Drupal 8 on 00:33 No Comments Get field value in Form alter drupal 8 syntax: $form_state->getValue('machine name'); to get...
Print nid in drupal 8 twig file or template file in Drupal Drupal 8 on 00:26 1 Comment print nid in drupal 8 twig file or template file add this code in _preprocess_page in .theme file at following...
Remove welcome message in drupal from front page in Drupal on 00:00 No Comments How to remove welcome message in drupal from front page? To Remove "Welcome Message & no frontpage content created...
Remove index.php from codeigniter url placed in subdomain in Codeigniter Htaccess on 23:56 No Comments <IfModule mod_rewrite.c> RewriteEngine on RewriteCond $1 !^(index\.php|resources|robots\.txt) ...
Remove index.php from url codeigniter in Codeigniter Htaccess on 23:26 No Comments How to remove index.php from url codeigniter Goto : application->config->config.php Find ...