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 ...