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 […]
Free Code Editor for Coder & Web Development
Top Free Code Editor for Windows and Mac Pc. This blog about free code editors, which is very helpful for developers as well as coders. They all are free and […]
WebP – How To Use, Define, Support, Alternative Solutions
More about WebP Define and Usage. Webp image format that contains compression and lossless both. It’s developed by Google in 2010, base on On2 technologies. Webp image format also replaces […]
How to disbale anchor tag by using JavaScript.
Learn how to disable <a> tag when using link of any text, button or etc. You can do this by using simple inline or function javascript and onclick return false […]
How to add or write :hover on ::before and ::after selector in CSS
How to add :hover on ::before and ::after css selector Some people find and facing the problem of how to use hover effect on ::before and ::after css selector, but […]
How to add Text, Link and Mention or Hashtags on Twitter Share Post Link
With this PHP code, without using any Online API you add link mention or hashtags on your twitter share post. This is code for add text, link and tag on […]