<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>| Blogger Tips And Tricks|Latest Tips For Bloggers</title>
	<atom:link href="https://www.bloggertipandtrick.net/tutorials/html/feed/" rel="self" type="application/rss+xml" />
	<link></link>
	<description>Blogger Tips And Tricks&#124;Latest Tips For Bloggers</description>
	<lastBuildDate>Tue, 16 Sep 2025 04:13:08 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>How to Add a Calendar to Blogger</title>
		<link>https://www.bloggertipandtrick.net/add-calendar-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/add-calendar-to-blogger/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 26 Aug 2025 08:32:00 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[gadget]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[java script]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/09/how-to-add-a-calender-to-bloggerblogspot.html</guid>

					<description><![CDATA[<p>This guide shows how to add a simple monthly calendar to your Blogger blog. It uses one HTML/JavaScript gadget and a small script. No external files are required. 1. Open your Blogger dashboard. 2. Go to Layout. 3. Click Add a Gadget in the area where you want the calendar. 4. Choose HTML/JavaScript. 5. Add [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-calendar-to-blogger/">How to Add a Calendar to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img fetchpriority="high" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-a-Calendar-to-Blogger.jpg" alt="How to Add a Calendar to Blogger" width="1200" height="630" class="alignnone size-full wp-image-7464 singular-featured-image" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-a-Calendar-to-Blogger.jpg 1200w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-a-Calendar-to-Blogger-768x403.jpg 768w" sizes="(max-width: 1200px) 100vw, 1200px" /></p>
<p>This guide shows how to add a simple monthly calendar to your Blogger blog. It uses one HTML/JavaScript gadget and a small script. No external files are required.</p>
<p>1. Open your <strong>Blogger</strong> dashboard.</p>
<p>2. Go to <strong>Layout</strong>.</p>
<p>3. Click <strong>Add a Gadget</strong> in the area where you want the calendar.</p>
<p>4. Choose <strong>HTML/JavaScript</strong>.</p>
<p>5. Add the code given below into the content box and click <strong>Save</strong>.</p>
<pre><code>&lt;div id=&quot;btt-basic-calendar&quot;&gt;&lt;/div&gt;
&lt;script type='text/javascript'&gt;
//&lt;![CDATA[

(function() {
  function generateCalendar(id) {
    var today = new Date();
    var month = today.getMonth();
    var year = today.getFullYear();
    var firstDay = new Date(year, month, 1).getDay();
    var daysInMonth = new Date(year, month + 1, 0).getDate();
    
    var monthNames = [
      &quot;January&quot;,&quot;February&quot;,&quot;March&quot;,&quot;April&quot;,&quot;May&quot;,&quot;June&quot;,
      &quot;July&quot;,&quot;August&quot;,&quot;September&quot;,&quot;October&quot;,&quot;November&quot;,&quot;December&quot;
    ];
    
    var calendar = &quot;&lt;table class='btt-basic-calendar'&gt;&quot;;
    calendar += &quot;&lt;thead&gt;&lt;tr&gt;&lt;th colspan='7'&gt;&quot; + monthNames[month] + &quot; &quot; + year + &quot;&lt;/th&gt;&lt;/tr&gt;&quot;;
    calendar += &quot;&lt;tr&gt;&lt;th&gt;Sun&lt;/th&gt;&lt;th&gt;Mon&lt;/th&gt;&lt;th&gt;Tue&lt;/th&gt;&lt;th&gt;Wed&lt;/th&gt;&lt;th&gt;Thu&lt;/th&gt;&lt;th&gt;Fri&lt;/th&gt;&lt;th&gt;Sat&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&quot;;
    
    // Empty cells before first day
    for (var i = 0; i &lt; firstDay; i++) {
      calendar += &quot;&lt;td&gt;&lt;/td&gt;&quot;;
    }
    
    // Fill days
    var day = 1;
    for (var i = firstDay; i &lt; 7; i++) {
      calendar += &quot;&lt;td&quot; + (day === today.getDate() ? &quot; class='today'&quot; : &quot;&quot;) + &quot;&gt;&quot; + day + &quot;&lt;/td&gt;&quot;;
      day++;
    }
    calendar += &quot;&lt;/tr&gt;&quot;;
    
    // Remaining weeks
    while (day &lt;= daysInMonth) {
      calendar += &quot;&lt;tr&gt;&quot;;
      for (var i = 0; i &lt; 7 &amp;&amp; day &lt;= daysInMonth; i++) {
        calendar += &quot;&lt;td&quot; + (day === today.getDate() ? &quot; class='today'&quot; : &quot;&quot;) + &quot;&gt;&quot; + day + &quot;&lt;/td&gt;&quot;;
        day++;
      }
      calendar += &quot;&lt;/tr&gt;&quot;;
    }
    
    calendar += &quot;&lt;/tbody&gt;&lt;/table&gt;&quot;;
    document.getElementById(id).innerHTML = calendar;
  }

  // Run on load if a container with id=&quot;btt-basic-calendar&quot; exists
  window.onload = function() {
    var container = document.getElementById(&quot;btt-basic-calendar&quot;);
    if (container) {
      generateCalendar(&quot;btt-basic-calendar&quot;);
    }
  };
})();

//]]&gt;
&lt;/script&gt;
&lt;style&gt;
.btt-basic-calendar {border-collapse:collapse;width:100%;text-align:center;font-family:Arial,sans-serif;font-size:14px;}
.btt-basic-calendar th {background:#f5f5f5;padding:5px;}
.btt-basic-calendar td {border:1px solid #ddd;padding:5px;}
.btt-basic-calendar .today {background:#ffeb3b;font-weight:bold;}
&lt;/style&gt;</code></pre>
<p><strong>Tip:</strong> You can add a title for the gadget, such as Calendar, to show a header above the widget.</p>
<p>6. Save your layout and refresh your blog. The current month will appear, and today's date will be highlighted.</p>
<p><strong>Note:</strong> This calendar code is not limited to Blogger. You can also use it on any other website by pasting the same snippet into your HTML where you want the calendar to appear.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-calendar-to-blogger/">How to Add a Calendar to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-calendar-to-blogger/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add jQuery to Blogger</title>
		<link>https://www.bloggertipandtrick.net/add-jquery-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/add-jquery-to-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Sun, 24 Aug 2025 03:08:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<category><![CDATA[java script]]></category>
		<category><![CDATA[jquery]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/07/how-to-add-jquery-on-blogger-blogspot-blogs.html</guid>

					<description><![CDATA[<p>Some Blogger templates or gadgets require jQuery to work properly. If your theme does not already load it, you can easily add it by following these steps. Steps Open your Blogger Dashboard and go to Theme. Click Edit HTML to open the code editor. Search for the closing tag &#60;/head&#62;. Paste the script below just [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-jquery-to-blogger/">How to Add jQuery to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-jQuery-to-Blogger.jpg" alt="How to Add jQuery to Blogger" width="1536" height="806" class="alignnone size-full wp-image-7460 singular-featured-image" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-jQuery-to-Blogger.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Add-jQuery-to-Blogger-768x403.jpg 768w" sizes="(max-width: 1536px) 100vw, 1536px" /></p>
<p>Some Blogger templates or gadgets require jQuery to work properly. If your theme does not already load it, you can easily add it by following these steps.</p>
<h2>Steps</h2>
<ol>
<li>Open your <strong>Blogger Dashboard</strong> and go to <strong>Theme</strong>.</li>
<li>Click <strong>Edit HTML</strong> to open the code editor.</li>
<li>Search for the closing tag <strong>&lt;/head&gt;</strong>.</li>
<li>Paste the script below <em>just before</em> <strong>&lt;/head&gt;</strong>.</li>
<li>Click <strong>Save</strong> to update your theme.</li>
</ol>
<h2>jQuery Script</h2>
<pre><code>&lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"&gt;&lt;/script&gt;</code></pre>
<h2>Optional: Add jQuery Migrate</h2>
<p>If your template or old gadgets stop working after adding the latest jQuery, you can also include jQuery Migrate. Place it <em>immediately after</em> the jQuery script tag:</p>
<pre><code>&lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"&gt;&lt;/script&gt;
&lt;script src="https://code.jquery.com/jquery-migrate-3.4.1.min.js"&gt;&lt;/script&gt;</code></pre>
<p><strong>Tip:</strong> Only add jQuery Migrate if you notice errors with older scripts. For most modern templates, the main jQuery script is enough.</p>
<h2>Final Step</h2>
<p>After saving your theme, refresh your blog and check if everything works correctly. If you see errors in the console, consider adding the optional jQuery Migrate script.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/add-jquery-to-blogger/">How to Add jQuery to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/add-jquery-to-blogger/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How to Open Blogger Link List Gadget Links in a New Tab</title>
		<link>https://www.bloggertipandtrick.net/open-blogger-link-list-gadget-links-in-new-tab/</link>
					<comments>https://www.bloggertipandtrick.net/open-blogger-link-list-gadget-links-in-new-tab/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Thu, 21 Aug 2025 01:17:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/07/how-to-set-links-of-a-linklist-widget-open-in-a-new-window.html</guid>

					<description><![CDATA[<p>Do you want the links in your Blogger Link List widget to open in a new tab? You can do this by adding a small change to your template. This guide shows the steps in a clear and simple way. Before you start Make a backup of your theme first. Go to Theme → Backup [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/open-blogger-link-list-gadget-links-in-new-tab/">How to Open Blogger Link List Gadget Links in a New Tab</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Open-Blogger-Link-List-Gadget-Links-in-a-New-Tab.jpg" alt="How to Open Blogger Link List Gadget Links in a New Tab" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7419" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Open-Blogger-Link-List-Gadget-Links-in-a-New-Tab.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Open-Blogger-Link-List-Gadget-Links-in-a-New-Tab-768x403.jpg 768w" sizes="(max-width: 1536px) 100vw, 1536px" /></p>
<p>Do you want the links in your Blogger <strong>Link List</strong> widget to open in a new tab? You can do this by adding a small change to your template. This guide shows the steps in a clear and simple way.</p>
<h2>Before you start</h2>
<ul>
<li>Make a backup of your theme first. Go to <strong>Theme</strong> → <strong>Backup</strong> → <strong>Download</strong>.</li>
</ul>
<h2>Step 1: Open your template</h2>
<ol>
<li>Go to your Blogger dashboard.</li>
<li>Click <strong>Theme</strong> → <strong>Edit HTML</strong>.</li>
<li>Click inside the code area and press <kbd>Ctrl</kbd> + <kbd>F</kbd> to search.</li>
</ol>
<h2>Step 2: Find your Link List widget</h2>
<p>Search for <span style="color:#0cb30c;font-weight:bold;">&lt;b:widget id='LinkList</span> or scroll until you see the Link List code block.</p>
<p>It will look similar to this:</p>
<pre><code>&lt;b:widget id='LinkList1' locked='false' title='Recommended Links' type='LinkList' visible='true'&gt;
&lt;b:includable id='main'&gt;
  &lt;b:include name='widget-title'/&gt;
  &lt;b:include name='content'/&gt;
&lt;/b:includable&gt;
&lt;b:includable id='content'&gt;
 &lt;div class='widget-content'&gt;
   &lt;ul&gt;
     &lt;b:loop values='data:links' var='link'&gt;
       &lt;li&gt;&lt;a expr:href='data:link.target'&gt;&lt;data:link.name/&gt;&lt;/a&gt;&lt;/li&gt;
     &lt;/b:loop&gt;
   &lt;/ul&gt;
 &lt;/div&gt;
&lt;/b:includable&gt;
&lt;/b:widget&gt;</code></pre>
<h2>Step 3: Add the target attribute</h2>
<p>Edit the <span style="color:#ff0000;font-weight:bold;">&lt;a&gt;</span> tag to include <span style="color:#0cb30c;font-weight:bold;">target='_blank'</span>. This makes each link open in a new tab.</p>
<p><strong>Important:</strong> add a space before <span style="color:#0cb30c;font-weight:bold;">target='_blank'</span> so the HTML stays valid.</p>
<p>Update your code to the following:</p>
<pre><code>&lt;b:widget id='LinkList1' locked='false' title='Recommended Links' type='LinkList' visible='true'&gt;
&lt;b:includable id='main'&gt;
  &lt;b:include name='widget-title'/&gt;
  &lt;b:include name='content'/&gt;
&lt;/b:includable&gt;
&lt;b:includable id='content'&gt;
 &lt;div class='widget-content'&gt;
   &lt;ul&gt;
     &lt;b:loop values='data:links' var='link'&gt;
       &lt;li&gt;&lt;a expr:href='data:link.target' <span style="color:#0cb30c;font-weight:bold;">target='_blank'</span> <span style="color:#ff00ff;font-weight:bold;">rel='noopener noreferrer'</span>&gt;&lt;data:link.name/&gt;&lt;/a&gt;&lt;/li&gt;
     &lt;/b:loop&gt;
   &lt;/ul&gt;
 &lt;/div&gt;
&lt;/b:includable&gt;
&lt;/b:widget&gt;</code></pre>
<p>Adding <span style="color:#ff00ff;font-weight:bold;">rel='noopener noreferrer'</span> improves security by preventing the new tab from controlling your blog, and it can also improve performance.</p>
<h2>Step 4: Save your changes</h2>
<ol>
<li>Click <strong>Save</strong> in the top right corner of the editor.</li>
<li>Refresh your blog and test the links in the Link List widget.</li>
</ol>
<h2>Troubleshooting</h2>
<ul>
<li><strong>I cannot find the widget:</strong> Try searching for the exact widget ID if you know it, for example <strong>LinkList12</strong>.</li>
<li><strong>Links still open in the same tab:</strong> Make sure you added a space before <strong>target='_blank'</strong> and saved the template.</li>
<li><strong>Multiple Link List widgets:</strong> Repeat the same change for each Link List block you want to affect.</li>
</ul>
<h2>Done</h2>
<p>Your Link List links should now open in a new tab. This is a small change that makes navigation more comfortable for your visitors.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/open-blogger-link-list-gadget-links-in-new-tab/">How to Open Blogger Link List Gadget Links in a New Tab</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/open-blogger-link-list-gadget-links-in-new-tab/feed/</wfw:commentRss>
			<slash:comments>8</slash:comments>
		
		
			</item>
		<item>
		<title>How to Embed a PHP Page in Blogger</title>
		<link>https://www.bloggertipandtrick.net/embed-php-page-in-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/embed-php-page-in-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 20 Aug 2025 04:22:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/07/how-to-embed-a-php-file-into-blogger.html</guid>

					<description><![CDATA[<p>Blogger does not support PHP files directly, but you can still display them. If you already have a PHP page hosted on a server, you can show it inside your Blogger blog using a simple &#60;iframe&#62;. This method is perfect for adding tools, forms, or scripts without needing to change how Blogger works. In this [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/embed-php-page-in-blogger/">How to Embed a PHP Page in Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Embed-a-PHP-Page-in-Blogger.jpg" alt="How to Embed a PHP Page in Blogger" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7414" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Embed-a-PHP-Page-in-Blogger.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/08/How-to-Embed-a-PHP-Page-in-Blogger-768x403.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></p>
<p>Blogger does not support PHP files directly, but you can still display them. If you already have a PHP page hosted on a server, you can show it inside your Blogger blog using a simple <strong>&lt;iframe&gt;</strong>. This method is perfect for adding tools, forms, or scripts without needing to change how Blogger works. In this guide, I will explain the steps in a simple way.</p>
<h2>Step 1: Host your PHP file</h2>
<p>Upload your PHP file to a web server that supports PHP. Blogger itself cannot run PHP,  so the file must be hosted elsewhere. For example: <strong>https://yourdomain.com/tool.php</strong>. If your blog uses HTTPS, make sure your PHP page also uses HTTPS.</p>
<h2>Step 2: Add an iframe to your blog</h2>
<p>Next, embed your PHP page using an iframe. Go to your Blogger dashboard, edit the post or page, switch to <strong>HTML view</strong>, and paste this code:</p>
<pre><code>&lt;iframe 
src="https://yourdomain.com/tool.php" 
title="Embedded PHP Page"
width="100%" 
height="420" 
loading="lazy"
style="border:0; max-width: 900px; display:block; margin: 0 auto;"&gt;
&lt;/iframe&gt;</code></pre>
<p>Replace <strong>https://yourdomain.com/tool.php</strong> with the link to your PHP file. You can change the <strong>height</strong> and <strong>max-width</strong> to fit your design.</p>
<h2>Step 3: Add it as a gadget (optional)</h2>
<p>
You can also add the PHP tool in your sidebar or footer as a gadget:
</p>
<ol>
<li>Go to <strong>Layout</strong> in your Blogger dashboard.</li>
<li>Click <strong>Add a Gadget</strong> where you want it to show.</li>
<li>Select <strong>HTML/JavaScript</strong>.</li>
<li>Paste the iframe code and save.</li>
</ol>
<h2>Tips and common issues</h2>
<ul>
<li><strong>Blank box?</strong> Your PHP host may block embedding with headers like <strong>X-Frame-Options</strong>. Try another host if this happens.</li>
<li><strong>Mixed content warnings</strong> Use HTTPS for both your blog and the PHP page.</li>
<li><strong>Too short or too tall?</strong> Adjust the <strong>height</strong> value in the iframe code.</li>
<li><strong>SEO note</strong> Content inside an iframe is not read as part of your blog by search engines. Add some supporting text to help SEO.</li>
</ul>
<h2>Example</h2>
<p>Here is an example with a placeholder PHP page URL:</p>
<pre><code>&lt;iframe 
src="https://example.com/my-tool.php" 
title="My PHP Tool"
width="100%" 
height="480" 
loading="lazy"
style="border:0; max-width: 900px; display:block; margin: 0 auto;"&gt;
&lt;/iframe&gt;</code></pre>
<p>This will display the PHP page inside your Blogger post, centered and clean.</p>
<h2>Conclusion</h2>
<p>That is all you need to do. Blogger cannot run PHP files itself, but you can display them by embedding the page with an iframe. Just host the PHP file on a proper server, then paste the iframe code into your blog. It is a simple and reliable way to bring dynamic features into Blogger.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/embed-php-page-in-blogger/">How to Embed a PHP Page in Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/embed-php-page-in-blogger/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
		<item>
		<title>How to Create an Auto-Highlight Textarea on Mouse Hover</title>
		<link>https://www.bloggertipandtrick.net/auto-highlight-textarea-on-hover/</link>
					<comments>https://www.bloggertipandtrick.net/auto-highlight-textarea-on-hover/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 08 Jul 2025 16:05:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<category><![CDATA[java script]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/06/how-to-make-text-area-with-auto-highlight-on-mouse-over.html</guid>

					<description><![CDATA[<p>If you want to add a textarea to your Blogger blog that automatically highlights its content when hovered over with the mouse, this simple tutorial will show you how to do it. This is useful for displaying copyable code, affiliate links, or tips that visitors can easily select and copy. 1. Login to your Blogger [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/auto-highlight-textarea-on-hover/">How to Create an Auto-Highlight Textarea on Mouse Hover</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/08/How-to-Create-an-Auto-Highlight-Textarea-on-Mouse-Hover.jpg" alt="How to Create an Auto-Highlight Textarea on Mouse Hover" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7242" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2014/08/How-to-Create-an-Auto-Highlight-Textarea-on-Mouse-Hover.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2014/08/How-to-Create-an-Auto-Highlight-Textarea-on-Mouse-Hover-768x403.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></p>
<p>If you want to add a textarea to your Blogger blog that automatically highlights its content when hovered over with the mouse, this simple tutorial will show you how to do it. This is useful for displaying copyable code, affiliate links, or tips that visitors can easily select and copy.</p>
<p>1. Login to your Blogger account and go to the "<strong>Layout</strong>" page of your blog.</p>
<p>2. Click the "<strong>Add a Gadget</strong>" link in the section where you want to add it.</p>
<p>3. Select "<strong>HTML/JavaScript</strong>", paste the code provided below, and click "<strong>Save</strong>".</p>
<pre style="overflow: auto; border: 1px solid black;">&lt;textarea rows=&quot;5&quot; cols=&quot;50&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; onclick=&quot;this.focus();this.select()&quot;&gt;

Enter Your Content Here

&lt;/textarea&gt;</pre>
<p><strong>Note:</strong> Remember to replace "<strong>Enter Your Content Here</strong>" with your actual content.</p>
<p>Example:</p>
<pre style="width: 90%; overflow: auto; border: 1px solid black;">&lt;textarea rows=&quot;5&quot; cols=&quot;50&quot; onfocus=&quot;this.select()&quot; onmouseover=&quot;this.focus()&quot; onclick=&quot;this.focus();this.select()&quot;&gt;

Tips for Bloggers for easy blogging and Making Money.blogger,blogspot tips and tricks.A dummies guide, templates,designs,widgets, JavaScript,HTML codes,SEO,Google AdSense,gadgets,how to monetize Blogger or blogspot blogs.

&lt;/textarea&gt;</pre>
<p>Look at the result below:</p>
<p><textarea rows="5" cols="50" onfocus="this.select()" onmouseover="this.focus()" onclick="this.focus();this.select()">Tips for Bloggers for easy blogging and Making Money.blogger,blogspot tips and tricks.A dummies guide, templates,designs,widgets, JavaScript,HTML codes,SEO,Google AdSense,gadgets,how to monetize Blogger or blogspot blogs.</textarea></p>
<p><strong>Note:</strong></p>
<ul>
<li>If you don't want to add it as a gadget and just need it inside a post, open the post editor, switch to the "HTML view," and paste the code right where you want it to appear.</li>
<li>The above code works not only on Blogger but also on any other website.</li>
</ul>
<p>The post <a href="https://www.bloggertipandtrick.net/auto-highlight-textarea-on-hover/">How to Create an Auto-Highlight Textarea on Mouse Hover</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/auto-highlight-textarea-on-hover/feed/</wfw:commentRss>
			<slash:comments>3</slash:comments>
		
		
			</item>
		<item>
		<title>How to Use Prettify Syntax Highlighter With Blogger</title>
		<link>https://www.bloggertipandtrick.net/prettify-syntax-highlighter-for-blogger-blogspot/</link>
					<comments>https://www.bloggertipandtrick.net/prettify-syntax-highlighter-for-blogger-blogspot/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 08 Jul 2025 03:05:44 +0000</pubDate>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[java script]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/?p=3922</guid>

					<description><![CDATA[<p>If you're a developer, tech blogger, or just love sharing code on your Blogger (Blogspot) blog, adding a good syntax highlighter is a must for readability and professional presentation. One of the lightweight tools you can still use is Google Code Prettify, a JavaScript-based syntax highlighter. This tutorial shows how to easily integrate the Prettify [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/prettify-syntax-highlighter-for-blogger-blogspot/">How to Use Prettify Syntax Highlighter With Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/How-to-Use-Prettify-Syntax-Highlighter-With-Blogger.jpg" alt="How to Use Prettify Syntax Highlighter With Blogger" width="1536" height="924" class="singular-featured-image alignnone size-full wp-image-7232" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/How-to-Use-Prettify-Syntax-Highlighter-With-Blogger.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/How-to-Use-Prettify-Syntax-Highlighter-With-Blogger-768x462.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></p>
<p>If you're a developer, tech blogger, or just love sharing code on your Blogger (Blogspot) blog, adding a good syntax highlighter is a must for readability and professional presentation. One of the lightweight tools you can still use is <strong>Google Code Prettify</strong>, a JavaScript-based syntax highlighter.</p>
<p>This tutorial shows how to easily integrate the <strong>Prettify</strong> into your Blogger blog, with live examples and alternate skin options.</p>
<p><span style="color:#009688"><strong>Step 1:</strong></span> Login to your Blogger account and go to the "<strong>Edit HTML</strong>" page of your blog.</p>
<p><span style="color:#009688"><strong>Step 2:</strong></span> You can load the JavaScript and CSS for prettify via one URL. Add this code just below <strong>&lt;head&gt;</strong> tag:</p>
<pre style="border:1px solid black;overflow:auto;font-size:120%;padding:15px 10px;"><strong>&lt;script src='https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js'&gt;&lt;/script&gt;</strong></pre>
<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Add-Google-Code-Prettify-Auto-Loader.png" alt="Add Google Code Prettify Auto Loader" width="1011" height="411" class="alignnone size-full wp-image-7238" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Add-Google-Code-Prettify-Auto-Loader.png 1011w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/Add-Google-Code-Prettify-Auto-Loader-768x312.png 768w" sizes="auto, (max-width: 1011px) 100vw, 1011px" /></p>
<p><span style="color:#009688"><strong>Step 3:</strong></span> Save your template. You have successfully added <strong>Prettify auto-loader</strong> to your Blogger blog. Above code will load the entire system and schedule the prettifier to run on page load.</p>
<p><span style="color:#009688"><strong>Step 4:</strong></span> Now when you want to display a code snippet in your blogger post, go to the Blogger post editor and select "<strong>HTML view</strong>".</p>
<p><span style="color:#009688"><strong>Step 5:</strong></span> Wrap your code snippet inside a <span style="color: #0000ff;"><strong>&lt;pre&gt;</strong></span> tag with the <span style="color: #ff00ff;"><strong>prettyprint</strong></span> class like this:</p>
<pre style="border: 1px solid black; overflow: auto;"><strong>&lt;pre class="<span style="color: #ff00ff;">prettyprint</span>"&gt;
source code here
&lt;/pre&gt;</strong></pre>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3924" alt="Add Source Code to Post Editor HTML" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/add-source-code-to-post-editor-html.jpg" width="664" height="365" /></p>
<p>Code Example:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;pre class="prettyprint"&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
// Say hello world until the user starts questioning
// the meaningfulness of their existence.
function helloWorld(world) {
  for (var i = 42; --i &amp;gt;= 0;) {
    alert('Hello ' + String(world));
  }
}
&amp;lt;/script&amp;gt;
&amp;lt;style&amp;gt;
p { color: pink }
b { color: blue }
u { color: &amp;quot;umber&amp;quot; }
&amp;lt;/style&amp;gt;
&lt;/pre&gt;</pre>
<p><strong>Note:</strong> You must <a href='https://www.bloggertipandtrick.net/tools/html-encoder/' target='_blank'><strong>escape special characters</strong></a> in your code snippet before adding it to the HTML. This ensures the browser displays the code correctly instead of interpreting it as actual markup.</p>
<p><span style="color:#009688"><strong>Step 6:</strong></span> Publish/Update your post and view your post. It will look like this:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3925" alt="Google Code Prettify Default Skin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-default-skin.jpg" width="522" height="302" /></p>
<h2>How to Add Different Code Styles</h2>
<p>Only you need to do is, replace "<span style="color:#009688"><strong>Step 2</strong></span>" code with below codes.</p>
<h3>Desert Skin:</h3>
<pre style="border: 1px solid black; overflow: auto;">&lt;script src='https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js?skin=<span style="color: #ff00ff;">desert</span>'&gt;&lt;/script&gt;</pre>
<p>Result:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3926" alt="Prettify Desert Skin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-desert-skin.jpg" width="522" height="302" /></p>
<h3>Sunburst Skin:</h3>
<pre style="border: 1px solid black; overflow: auto;">&lt;script src='https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js?skin=<span style="color: #ff00ff;">sunburst</span>'&gt;&lt;/script&gt;</pre>
<p>Result:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3927" alt="Prettify Sunburst Skin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-sunburst-skin.jpg" width="522" height="323" /></p>
<h3>Sons-Of-Obsidian Skin:</h3>
<pre style="border: 1px solid black; overflow: auto;">&lt;script src='https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js?skin=<span style="color: #ff00ff;">sons-of-obsidian</span>'&gt;&lt;/script&gt;</pre>
<p>Result:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3928" alt="Prettify Sons-Of-Obsidian Skin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-sons-of-obsidian-skin.jpg" width="522" height="298" /></p>
<h3>Doxy Skin:</h3>
<pre style="border: 1px solid black; overflow: auto;">&lt;script src='https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js?skin=<span style="color: #ff00ff;">doxy</span>'&gt;&lt;/script&gt;</pre>
<p>Result:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3929" alt="Prettify Doxy Skin" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-doxy-skin.jpg" width="518" height="321" /></p>
<h2>How to Specify the Language of Your Code</h2>
<p>File extensions supported by default include: "<strong>bsh</strong>", "<strong>c</strong>", "<strong>cc</strong>", "<strong>cpp</strong>", "<strong>cs</strong>", "<strong>csh</strong>", "<strong>cyc</strong>", "<strong>cv</strong>", "<strong>htm</strong>", "<strong>html</strong>", "<strong>java</strong>", "<strong>js</strong>", "<strong>m</strong>", "<strong>mxml</strong>", "<strong>perl</strong>", "<strong>pl</strong>", "<strong>pm</strong>", "<strong>py</strong>", "<strong>rb</strong>", "<strong>sh</strong>", "<strong>xhtml</strong>", "<strong>xml</strong>", "<strong>xsl</strong>"</p>
<p>The <span style="color: #0000ff;"><strong>lang-*</strong></span> class specifies the language file extensions.</p>
<p>You can specify other languages by specifying the language extension along with the prettyprint class.</p>
<p>For example, The syntax-highlighting functions contained in lang-css.js will not be called without adding the class "<span style="color: #ff00ff;"><strong>lang-css</strong></span>" to the &lt;pre&gt; tag. So you can add your CSS codes like this:</p>
<pre style="border: 1px solid black; overflow: auto;"><strong>&lt;pre class="prettyprint <span style="color: #ff00ff;">lang-css</span>"&gt;
CSS code here
&lt;/pre&gt;</strong></pre>
<p>Example:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3932" alt="Prettify Add CSS Codes" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-add-css-codes.jpg" width="664" height="365" /></p>
<p>View the <a href="https://github.com/googlearchive/code-prettify/tree/master/src" target="_blank" rel="nofollow">complete list of Prettify language handlers</a> on GitHub.</p>
<h2>How to Display Codes with Line Numbers</h2>
<p>To display line numbers, use "<span style="color: #ff00ff;"><strong>linenums</strong></span>" class like this:</p>
<pre style="border: 1px solid black; overflow: auto;"><strong>&lt;pre class="prettyprint <span style="color: #ff00ff;">linenums</span>"&gt;
source code here
&lt;/pre&gt;</strong></pre>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3930" alt="Prettify with Line Numbers" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-add-line-numbers.jpg" width="664" height="365" /></p>
<p>Code Example:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;pre class="prettyprint linenums"&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
// Say hello world until the user starts questioning
// the meaningfulness of their existence.
function helloWorld(world) {
  for (var i = 42; --i &amp;gt;= 0;) {
    alert('Hello ' + String(world));
  }
}
&amp;lt;/script&amp;gt;
&amp;lt;style&amp;gt;
p { color: pink }
b { color: blue }
u { color: &amp;quot;umber&amp;quot; }
&amp;lt;/style&amp;gt;
&lt;/pre&gt;</pre>
<p>Result:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-3931" alt="Prettify Default Skin with Line Numbers" src="https://www.bloggertipandtrick.net/wp-content/uploads/2014/02/google-code-prettify-default-skin-with-line-numbers.jpg" width="515" height="300" /></p>
<p>Below code will display a CSS code with line numbers:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;pre class="<span style="color: #0000ff;">prettyprint</span> <span style="color: #ff00ff;">lang-css</span> <span style="color: #ff0000;">linenums</span>"&gt;
body{background:#000000 url(http://3.bp.blogspot.com/-vB6rbTuTh34/UEw9OyUKQJI/AAAAAAAAIoQ/A3dwg6dKC_g/s1600/background.jpg) center top no-repeat;color:#555555;font-family: Arial, Helvetica, Sans-serif;font-size: 13px;margin:0px;padding:0px;}
a:link,a:visited{color:#C11112;text-decoration:underline;outline:none;}
a:hover{color:#FE3D36;text-decoration:none;outline:none;}
a img{border-width:0}
#body-wrapper{margin:0px;padding:0px;}
&lt;/pre&gt;</pre>
<p><strong>Note:</strong> The codes above work not only on Blogger but also on other websites. Simply add the code from <span style="color:#009688"><strong>Step 2</strong></span> right after the <strong>&lt;head&gt;</strong> tag of your webpage, then use any of the provided examples to display syntax-highlighted code.</p>
<p>Google Code Prettify is still a great choice for lightweight syntax highlighting on Blogger or any other website, especially if you don't want to use third-party script builders. It works out-of-the-box, <strong>supports multiple languages</strong>, and <strong>has various themes</strong> you can apply in seconds.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/prettify-syntax-highlighter-for-blogger-blogspot/">How to Use Prettify Syntax Highlighter With Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/prettify-syntax-highlighter-for-blogger-blogspot/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How To Set All Links to Open in a New Window</title>
		<link>https://www.bloggertipandtrick.net/all-links-open-in-new-window/</link>
					<comments>https://www.bloggertipandtrick.net/all-links-open-in-new-window/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Mon, 07 Jul 2025 00:05:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/10/how-to-set-all-links-open-in-a-new-window-in-blogger.html</guid>

					<description><![CDATA[<p>The HTML target attribute specifies where to open the linked document. If you want to open a link in a new tab or window, you can use the target="_blank" attribute like this: &#60;a href=&#34;https://www.facebook.com/&#34; target=&#34;_blank&#34;&#62;Visit Facebook&#60;/a&#62; But if you'd like to make all links on your Blogger site open in a new window automatically, follow [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/all-links-open-in-new-window/">How To Set All Links to Open in a New Window</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2015/09/How-To-Set-All-Links-to-Open-in-a-New-Window-in-Blogger.jpg" alt="How To Set All Links to Open in a New Window" width="1536" height="929" class="singular-featured-image alignnone size-full wp-image-7227" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2015/09/How-To-Set-All-Links-to-Open-in-a-New-Window-in-Blogger.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2015/09/How-To-Set-All-Links-to-Open-in-a-New-Window-in-Blogger-768x465.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></p>
<p>The HTML <strong>target</strong> attribute specifies where to open the linked document. If you want to open a link in a <strong>new tab or window</strong>, you can use the <strong>target="_blank"</strong> attribute like this:</p>
<pre style="overflow: auto; text-align: center; font-size: 110%; padding: 15px 10px;">
&lt;a href=&quot;https://www.facebook.com/&quot; target=&quot;_blank&quot;&gt;Visit Facebook&lt;/a&gt;
</pre>
<p>But if you'd like to make <strong>all links</strong> on your Blogger site <strong>open in a new window automatically</strong>, follow the steps below:</p>
<ol>
<li>Go to your blog's <strong>"Edit HTML"</strong> page.</li>
<li>Copy and paste the code below <span style="color: #cc33cc;">just after</span> the <span style="color: #ff0000;">&lt;head&gt;</span> tag:</li>
</ol>
<pre style="overflow: auto; font-size: 130%; text-align: center; padding: 15px 10px;">
&lt;base target="_blank" /&gt;
</pre>
<ol start="3">
<li>Save your Blogger template.</li>
</ol>
<p>Now, all links on your site such as post links, navigation links, and widget links will automatically open in a new tab or window. There is no need to add <strong>target="_blank"</strong> manually to each link.</p>
<p><strong>Note:</strong> This method works not only on Blogger but also on other websites. Simply add the code shown above immediately after the &lt;head&gt; tag of your webpage.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/all-links-open-in-new-window/">How To Set All Links to Open in a New Window</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/all-links-open-in-new-window/feed/</wfw:commentRss>
			<slash:comments>7</slash:comments>
		
		
			</item>
		<item>
		<title>How to Add jQuery Easy Tooltip to Blogger</title>
		<link>https://www.bloggertipandtrick.net/jquery-easy-tooltip-to-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/jquery-easy-tooltip-to-blogger/#respond</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 02 Jul 2025 16:58:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/08/how-to-add-jquery-tooltips-effect-to-blogger-links.html</guid>

					<description><![CDATA[<p>This tutorial explains how to add tooltips to the links of your website or blog using "Easy Tooltip" jQuery plugin. A Tooltip is a hint that appears when an user hovers the pointer over an item that contains a brief text message identifying the object. Follow the steps given below to add Easy Tooltip to [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/jquery-easy-tooltip-to-blogger/">How to Add jQuery Easy Tooltip to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Add-jQuery-Easy-Tooltip-to-Blogger.jpg" alt="How to Add jQuery Easy Tooltip to Blogger" width="1536" height="1024" class="singular-featured-image alignnone size-full wp-image-7212" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Add-jQuery-Easy-Tooltip-to-Blogger.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Add-jQuery-Easy-Tooltip-to-Blogger-768x512.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></p>
<p>This tutorial explains how to add tooltips to the links of your website or blog using "<strong>Easy Tooltip</strong>" jQuery plugin. A Tooltip is a hint that appears when an user hovers the pointer over an item that contains a brief text message identifying the object. Follow the steps given below to add Easy Tooltip to your website.</p>
<p>1.If you are using Blogger, go to "Edit HTML" of your blog.</p>
<p>2.Add this code just before <span style="color: #ff0000;"><strong>&lt;/head&gt;</strong></span> tag:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;!-- jQuery : remove these 2 lines if jQuery already included --&gt;
&lt;script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js' type='text/javascript'&gt;&lt;/script&gt;
&lt;script src='https://cdnjs.cloudflare.com/ajax/libs/jquery-migrate/3.4.1/jquery-migrate.min.js' type='text/javascript'&gt;&lt;/script&gt;
  
&lt;script type='text/javascript'&gt;
//&lt;![CDATA[
(function($){$.fn.easyTooltip=function(options){var defaults={xOffset:20,yOffset:45,tooltipId:&quot;easyTooltip&quot;,clickRemove:false,content:&quot;&quot;,useElement:&quot;&quot;};var options=$.extend(defaults,options);var content;this.each(function(){var title=$(this).attr(&quot;title&quot;);$(this).hover(function(e){content=(options.content!=&quot;&quot;)?options.content:title;content=(options.useElement!=&quot;&quot;)?$(&quot;#&quot;+options.useElement).html():content;$(this).attr(&quot;title&quot;,&quot;&quot;);if(content!=&quot;&quot;&amp;&amp;content!=undefined){$(&quot;body&quot;).append(&quot;&lt;div id='&quot;+options.tooltipId+&quot;'&gt;&quot;+content+&quot;&lt;/div&gt;&quot;);$(&quot;#&quot;+options.tooltipId).css(&quot;position&quot;,&quot;absolute&quot;).css(&quot;top&quot;,(e.pageY-options.yOffset)+&quot;px&quot;).css(&quot;left&quot;,(e.pageX+options.xOffset)+&quot;px&quot;).css(&quot;display&quot;,&quot;none&quot;).fadeIn(&quot;fast&quot;)}},function(){$(&quot;#&quot;+options.tooltipId).remove();$(this).attr(&quot;title&quot;,title)});$(this).mousemove(function(e){$(&quot;#&quot;+options.tooltipId).css(&quot;top&quot;,(e.pageY-options.yOffset)+&quot;px&quot;).css(&quot;left&quot;,(e.pageX+options.xOffset)+&quot;px&quot;)});if(options.clickRemove){$(this).mousedown(function(e){$(&quot;#&quot;+options.tooltipId).remove();$(this).attr(&quot;title&quot;,title)})}})}})(jQuery);
//]]&gt;
&lt;/script&gt;
&lt;!-- end tooltips --&gt;
  
&lt;script type='text/javascript'&gt;
//&lt;![CDATA[

jQuery(document).ready(function($) {
  $('a.easytooltip').easyTooltip();
});

//]]&gt;
&lt;/script&gt;

&lt;style type='text/css'&gt;
#easyTooltip{
padding:5px 10px;
border:1px solid #000;
background: #333;
color:#fff;
}
&lt;/style&gt;</pre>
<p>3.Save your template.</p>
<p>4.Now when you adding a HTML link, "<span style="color: #ff0000;"><strong>easytooltip</strong></span>" CSS class and title attribute should add like this:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;a <span style="color: #ff00ff;"><strong>class='easytooltip'</strong></span> <span style="color: #008000;"><strong>title='ENTER-LINK-TITLE-HERE'</strong></span> href='ENTER-LINK-URL-HERE'&gt;ENTER-LINK-NAME-HERE&lt;/a&gt;</pre>
<p>Look at this example:</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;a <span style="color: #ff00ff;"><strong>class='easytooltip'</strong></span> <span style="color: #008000;"><strong>title='How to Create NoFollow Link List Widget in Blogger'</strong></span> href='https://www.bloggertipandtrick.net/nofollow-link-list-widget-blogger/'&gt;Create NoFollow Link List Widget in Blogger&lt;/a&gt;</pre>
<p>Final result will look like this:</p>
<p><img loading="lazy" decoding="async" class="alignnone size-full wp-image-6449" src="https://www.bloggertipandtrick.net/wp-content/uploads/2017/04/jQuery-Easy-Tooltip.jpg" alt="jQuery Easy Tooltip" width="600" height="120" /></p>
<p>The post <a href="https://www.bloggertipandtrick.net/jquery-easy-tooltip-to-blogger/">How to Add jQuery Easy Tooltip to Blogger</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/jquery-easy-tooltip-to-blogger/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Display HTML Code in Blogger (Without Rendering)</title>
		<link>https://www.bloggertipandtrick.net/how-to-display-html-code-in-blogger/</link>
					<comments>https://www.bloggertipandtrick.net/how-to-display-html-code-in-blogger/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Tue, 01 Jul 2025 05:01:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/03/how-to-show-html-text-in-blogger-posts.html</guid>

					<description><![CDATA[<p>Many visitors ask how to display raw HTML code in their posts so it appears as plain text and can be easily copied by readers. Here's a simple solution to achieve that. The Problem is when you paste HTML directly into your post editor (whether in "HTML" or "Compose" mode), the browser interprets it as [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-display-html-code-in-blogger/">How to Display HTML Code in Blogger (Without Rendering)</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Display-HTML-Code-in-Blogger.jpg" alt="How to Display HTML Code in Blogger" width="1536" height="1024" class="singular-featured-image alignnone size-full wp-image-7202" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Display-HTML-Code-in-Blogger.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2025/07/How-to-Display-HTML-Code-in-Blogger-768x512.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></p>
<p>Many visitors ask how to <strong>display raw HTML code</strong> in their posts so it appears as plain text and can be easily copied by readers. Here's a simple solution to achieve that.</p>
<p>The Problem is when you paste HTML directly into your post editor (whether in "HTML" or "Compose" mode), the browser interprets it as markup rather than displaying the code itself. For example:</p>
<pre><code>&lt;b&gt;This text would render as bold instead of showing the tags.&lt;/b&gt;</code></pre>
<p>So, to display HTML as plain text, you must <strong>escape</strong> the special characters. Specifically:</p>
<ul>
<li>Replace <code>&lt;</code> with <code>&amp;lt;</code></li>
<li>Replace <code>&gt;</code> with <code>&amp;gt;</code></li>
<li>Replace <code>&amp;</code> with <code>&amp;amp;</code></li>
<li>Replace <code>&quot;</code> with <code>&amp;quot;</code></li>
<li>Replace <code>&#39;</code> with <code>&amp;#39;</code></li>
</ul>
<p>Manually converting these symbols can be tedious, so we recommend using <a href="https://www.bloggertipandtrick.net/tools/html-encoder/" target="_blank">our free HTML encoder tool</a>.</p>
<p>Follow these steps to get the converted HTML code:</p>
<ol>
<li>Paste your HTML into the tool</li>
<li>Click "Encode" to convert the symbols</li>
<li>Copy the output and paste it into your blog post</li>
</ol>
<p>Now your HTML will appear as readable code, and visitors can easily copy it!</p>
<p><strong><img src="https://s.w.org/images/core/emoji/17.0.2/72x72/1f4dd.png" alt="📝" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Note:</strong></p>
<p>The converted HTML-safe text isn’t limited to Blogger alone. You can use it on any platform where you want your raw code to appear as plain, copyable text—whether it's WordPress, Medium, forums, online tutorials, or even in emails and documentation.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/how-to-display-html-code-in-blogger/">How to Display HTML Code in Blogger (Without Rendering)</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/how-to-display-html-code-in-blogger/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>How To Redirect a Blogger Post to Another URL</title>
		<link>https://www.bloggertipandtrick.net/redirect-blogger-post-to-another-url/</link>
					<comments>https://www.bloggertipandtrick.net/redirect-blogger-post-to-another-url/#comments</comments>
		
		<dc:creator><![CDATA[Lasantha Bandara]]></dc:creator>
		<pubDate>Wed, 18 Jun 2025 02:32:00 +0000</pubDate>
				<category><![CDATA[html]]></category>
		<category><![CDATA[meta tags]]></category>
		<category><![CDATA[seo]]></category>
		<guid isPermaLink="false">http://www.bloggertipandtrick.net/2009/12/how-to-redirect-a-blogger-post-to-another-url.html</guid>

					<description><![CDATA[<p>Do you wish to redirect a specific Blogger post to another page or an external URL? Whether you're retiring a post, upgrading your structure, or simply improving navigation, there's a simple and effective way that works perfectly on Blogger. 1. Go to "Edit HTML" page of your Blogger blog. 2. Scroll down to where you [&#8230;]</p>
<p>The post <a href="https://www.bloggertipandtrick.net/redirect-blogger-post-to-another-url/">How To Redirect a Blogger Post to Another URL</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><img loading="lazy" decoding="async" src="https://www.bloggertipandtrick.net/wp-content/uploads/2009/12/How-To-Redirect-a-Blogger-Post-to-Another-URL.jpg" alt="How To Redirect a Blogger Post to Another URL" width="1536" height="806" class="singular-featured-image alignnone size-full wp-image-7175" srcset="https://www.bloggertipandtrick.net/wp-content/uploads/2009/12/How-To-Redirect-a-Blogger-Post-to-Another-URL.jpg 1536w, https://www.bloggertipandtrick.net/wp-content/uploads/2009/12/How-To-Redirect-a-Blogger-Post-to-Another-URL-768x403.jpg 768w" sizes="auto, (max-width: 1536px) 100vw, 1536px" /></p>
<p>Do you wish to redirect a specific Blogger post to another page or an external URL? Whether you're retiring a post, upgrading your structure, or simply improving navigation, there's a simple and effective way that works perfectly on Blogger.</p>
<p>1. Go to "Edit HTML" page of your Blogger blog.</p>
<p>2. Scroll down to where you see <span style="font-weight: bold; color: #ff0000;">&lt;head&gt;</span> tag .</p>
<p>3. Copy below code and paste it <span style="color: #3333ff;">just after</span> the <span style="color: #ff0000;">&lt;head&gt;</span> tag.</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:if cond='data:blog.url == "<span style="font-weight: bold; color: #cc33cc;">YOUR-BLOG-POST-URL</span>"'&gt;
&lt;meta http-equiv="refresh" content="<span style="font-weight: bold; color: #ff0000;">5</span>; url=<span style="font-weight: bold; color: #009900;">REDIRECT-URL</span>" /&gt;
&lt;/b:if&gt;</pre>
<p>4. Replace:</p>
<ul>
<li><span style="font-weight: bold; color: #cc33cc;">YOUR-BLOG-POST-URL</span> → with the full link of the Blogger post to redirect from.</li>
<li><span style="font-weight: bold; color: #009900;">REDIRECT-URL</span> → with the target URL.</li>
</ul>
<p>Look at the example below.</p>
<pre style="border: 1px solid black; overflow: auto;">&lt;b:if cond='data:blog.url == "<span style="font-weight: bold; color: #cc33cc;">https://www.bloggertipandtrick.net/p/contact-me.html</span>"'&gt;
&lt;meta http-equiv="refresh" content="<span style="font-weight: bold; color: #ff0000;">5</span>; url=<span style="font-weight: bold; color: #009900;">https://www.bloggertipandtrick.net</span>" /&gt;
&lt;/b:if&gt;</pre>
<p>If I add above code to my template, when someone go to my contact us page he will be redirected to my home page after 5 seconds. To redirect without waiting, <span style="color: #3333ff;">replace</span> <span style="font-weight: bold; color: #ff0000;">5</span> with <span style="font-weight: bold; color: #ff0000;">0</span>.</p>
<p>5. After making changes to the code, click "Save" in the theme editor. That’s it. Your post now will be redirected to the new URL provided.</p>
<p>The post <a href="https://www.bloggertipandtrick.net/redirect-blogger-post-to-another-url/">How To Redirect a Blogger Post to Another URL</a> appeared first on <a href="https://www.bloggertipandtrick.net">Blogger Tips And Tricks|Latest Tips For Bloggers</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.bloggertipandtrick.net/redirect-blogger-post-to-another-url/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
	</channel>
</rss>
