JQuery AJAX and PHP Code for Contact Form Ajax (Asynchronous JavaScript and XML) means by send or receive data with the server without refreshing or reloading the web page. In […]
Put Multiple Properties of CSS in jQuery
Put Multiple Properties of CSS in jQuery jQuery(‘container’).children().css({‘color’:’pink’, ‘background-color’:’blue’, ‘font-family’:’arial’, ‘font-size’:’20px’});
Get selected uploaded file name in input file by jQuery without fake path
Uploaded file value comes with a fake path, how to get filename without a fake path. In this code, how to get filename without full path, only use the file […]
How to add blog post title or heading in WordPress Single Blog
How to add blog post title or heading in WordPress Single Blog <h2><?php single_post_title( ‘Current Open Post: ‘ ); ?></h2>
How to Add Category Drop down or Fetch Category List with Link in WordPress
How to Add Category Dropdown or Fetch Category List with Link in WordPress Code In header.php <div class=”dropDownBlog”> <?php $categories = get_categories( array( ‘orderby’ => ‘name’, ‘order’ => ‘ASC’ ) […]
Change HTML Element Text by JQuery Code
Change HTML Element Text by JQuery Code <script type=”text/javascript”> jQuery(document).ready(function(){ var breadCrumbText = jQuery(‘.breadcrumb-trail’).html(); var changeBreadCrumb = breadCrumbText.replace(‘Home’,’Blog’); jQuery(‘.breadcrumb-trail’).html(changeBreadCrumb); }); </script>
How to make search icon as rel follow on Enfold WordPress theme
Go to PHP file functions-enfold.php (../wp-content/themes/enfold) select $nofollow variable and update ‘rel=”nofollow”‘ to ‘rel=”follow”‘. /* AJAX SEARCH */ if(!function_exists(‘avia_append_search_nav’)) { //first append search item to main menu add_filter( ‘wp_nav_menu_items’, ‘avia_append_search_nav’, […]
Using Textpath With SVG
Using Textpath With SVG In this blog, I show you how to use Textpath in SVG so let’s start the code. First Your create svg line in svg codes. <div […]
Online Tools for Minify or Compressing JavaScript, CSS & HTML Code
Online Tools for Minify or Compressing JavaScript, CSS & HTML Code Minification or Compressing of code that process reducing the file size from the original size to smallest size, without […]
Flexbox Properties Tutorial and How to Use with HTML CSS
Why Using Flexbox: An Overview of Behind using flexbox. In this blog, show you using behind flexbox and main properties of using it in order to flexbox layout. What is […]