• Our Services
  • Press Releases
  • Explore Us
  • Login
  • Our WordPress Plugin
  • Blog Posting Services
  • In LinkedIn
  • Our Code Repository
  • In Twitter
J
HARAPHULA
OneStop Shop of Information

Updates

  • Termites in House? Pest Control Services to Save Damage
    •
  • How to Buy Facebook Likes and boost your Reach?
    •
  • CNC Machining in Model Making Dubai for Prototypes
    •
  • Human Behavior in Men and Women Aged 18 to 35
    •
  • Best Nutrition for Active Working Dogs
    •
  • Why Homeowners Love Brown Granite Worktops for their Kitchens?
    •
  • Siding Repair in Cleveland – Why Timely Maintenance is Crucial for your Home?
    •
  • How to Transition to Toxic-Free Sanitary Pads Smoothly?
    •
  • Potassium Feldspar – A Comprehensive Guide
    •
  • What are Textile Chemicals and Why are they Important?
    •
  • How to Detect and Repair Leaks in PPRC Pipes and Fittings?
    •
  • Plumber Islington – MK Plumbers – Your Local Plumbing Experts
    •
  • Top Storage Sheds in Corowa – Reliable and Affordable Options
    •
  • Mastering Pest Control – Learn Online for a Sustainable Future
    •
  • Effective Strategies for Pest Control in Urban Environments
    •

Script to Add Custom Social Sharing buttons using JQuery?

Blogging Techniques
May 8, 2017
2.6 (34 votes)
Script to Add Custom Social Sharing buttons using JQuery? Script to Add Custom Social Sharing buttons using JQuery?
4 5 82
On-page friendly Custom Sidebar Widgets WP Plugin

Today Social Media’s are the best ways to bring free real human traffic to your Blog. As you know Google hates artificial backlinks. It is more fruitful for your portal if visitors will start sharing. This practice helps to gain popularity and ranking. Assume you have your blog related to Fashion industry. Every day nearly 200 readers redirects to your blog through Search engines. Here if your portal provides share option, it may 10 readers like your content and share the link in their network. Which will directly helps to bring referral traffic. It was noticed referral traffic helps to generate better Return on Investments.

With this idea recently we introduced Social media Sharing buttons in our blog. My blog is designed using WordPress. While I searched for Social Sharing buttons plugin in WordPress, I got many. But refer to my requirements in my blog I want Custom Social Sharing buttons. I have icon files for Facebook, Twitter and LinkedIn. What more I want is while users will click on these icon files a centered aligned Popup will open. Where my visitors can easily share the link without wasting much of their quality time.

To achieve the same did start with the implementation. Downloaded 3D social media icon images from iconfinder.com. Placed them in side my HTML file using a UL element as below.

Adding Social Sharing icons

<ul class="ulstyle">
<li class="listyle">
<a class="fb-share" target="_blank">
<img src="https://jharaphula.com/wp-content/uploads/2016/05/ico-facebook.png" alt="Facebook" title="Facebook" />
</a>
</li>
<li class="listyle">
<a class="tw-share" target="_blank">
<img src="https://jharaphula.com/wp-content/uploads/2016/05/ico-twitter.png" alt="Twitter" title="Twitter" />
</a>
</li>
<li class="listyle">
<a class="gp-share" target="_blank">
<img src="https://jharaphula.com/wp-content/uploads/2016/05/ico-google_plus.png" alt="Google Plus" title="Google Plus" />
</a>
</li>
<li>
<a class="ln-share" target="_blank">
<img src="https://jharaphula.com/wp-content/uploads/2016/05/ico-linkedin.png" alt="LinkedIn" title="LinkedIn" />
</a>
</li>
</ul>

CSS Styles

.ulstyle {
list-style: outside none none; 
overflow: hidden; 
width: 247px; 
margin: auto;
}
.listyle {
float: left; 
padding-right: 18px;
cursor: pointer;
}
.ln-share {
cursor: pointer;
}

Now what more remain? Yes, to make Social Sharing Functional I have to post parameters like URL or page Title to Social media Sharing APIs. In this scenario I required 4 top Social Medias Facebook, Twitter, Google Plus and LinkedIn. The Social Sharing API’s for these 4 popular Social networking sites are as below.

Facebook – http://www.facebook.com/share.php?u=[URL]&title=[TITLE]
Twitter – http://twitter.com/intent/tweet?status=[TITLE]+[URL]
Google Plus – https://plus.google.com/share?url=[URL]
LinkedIn – http://www.linkedin.com/shareArticle?mini=true&url=[URL]&title=[TITLE]&source=[SOURCE/DOMAIN]

Here to achieve Social Sharing Pop-up’s on click of icon images I did write 4 jquery functions inside document.ready method. These functions are called over the click event of icon images. To open a popup with Social Sharing API’s here I am using the traditional JS window.open method. Using simple calculation aligning these pop-up’s to center. Look at the Script below.

$('.fb-share').click(function(e) {
e.preventDefault();
window.open('https://www.facebook.com/sharer/sharer.php?u=' + location.href + '', 'fbShareWindow', 'height=396, width=630, top=' + (jQuery(window).height() / 2 - 198) + ', left=' + (jQuery(window).width() / 2 - 315) + ', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0');
return false;
});

$('.tw-share').click(function(e) {
e.preventDefault();
window.open('http://twitter.com/intent/tweet?status=<?php the_title(); ?>' + ' ' + '' + location.href + '', 'twShareWindow', 'height=396, width=630, top=' + (jQuery(window).height() / 2 - 198) + ', left=' + (jQuery(window).width() / 2 - 315) + ', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0');
return false;
});

$('.gp-share').click(function(e) {
e.preventDefault();
window.open('https://plus.google.com/share?url=' + location.href + '', 'gpShareWindow', 'height=556, width=404, top=' + (jQuery(window).height() / 2 - 278) + ', left=' + (jQuery(window).width() / 2 - 202) + ', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0');
return false;
});

$('.ln-share').click(function(e) {
e.preventDefault();
window.open('http://www.linkedin.com/shareArticle?mini=true&url=' + location.href + '&title=<?php the_title(); ?>&source=https://jharaphula.com', 'lnShareWindow', 'height=580, width=630, top=' + (jQuery(window).height() / 2 - 290) + ', left=' + (jQuery(window).width() / 2 - 315) + ', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0');
return false;
});

In the above Script thing to notice is in place of URL I am passing location.href. Which results the current page URL to share.

Tags:Advantages using Jquery, Custom Social Sharing buttons, Sharing buttons using JQuery, Utilize Social Media
6 Crucial WordPress Skills to Manage your Blog
5 Devices to Fix Wi-Fi Deadspots from Netgear Universal and Cisco

Related Posts

  • Jquery Interview Questions and Answers for…
  • Free Backlinks Submitter tools to generate 2000+…
  • Why Web2 Guest Posts Backlinks matters for Google Ranking?
  • Basic SEO Interview Questions & Answers for Freshers
  • Paid Guest Posting Service with multi-niche based…
  • Jquery Mobile Tutorial for Beginners with Examples
  • How Paid Guest Posting Services Help for SEO Backlinks?
  • SEO Agency for Startups - Unlocking Success in the…
  • How Guest Posting Services useful for SEO Backlinks…
  • Low Price Guest Posting Services with Contextual…
  • Google Search Console for SEO Tools for every Webmaster
  • Should I go for paid Guest Posting with No-follow links?
  • Natural Link Building using Guest Posting is a…
  • How paid Guest Posting Services helps Businesses to…
  • How to fix "Err_Too_Many_Redirects" in Chrome for Android?
  • The best Guest Posting Website to boost your Online Presence
  • Dofollow High PR Social Bookmarking Sites list for bloggers
  • How to Create Backlinks? - A Comprehensive Guide for SEO
  • Limitations of Free Guest Posting, Why to Choose Paid Only?
  • Various factors of On-page Optimization - SEO…
  • Techniques behind successful Link building strategies
  • Checklist for Guest Posting Service buyers to…
  • Charlotte's SEO Leaders Explain Link Trends
  • SEO Digital Marketing Strategy for Bloggers and Freelancers
  • What are Do-Follow Backlinks and the benefits of using Them?
  • Types of Website Traffic Sources to Generate Leads…
  • How backlinks affects website Ranking and Page rank?
  • Top 20 Free Guest Posting Sites
  • Do-follow links from Guest Posting how affecting Ranking
  • Example of Simple Responsive Jquery Range Slider…

Popular Categories

  • Miscellaneous589
  • Digitalization298
  • Career Guide244
  • Indian Blog207
  • Business Book177
  • Health & Wellness168
  • Travel & Tourism132
  • Your Financial Advisor120
  • Real Estate Consulting111
  • Shopping97
  • Digital Marketing78
  • Blogging Techniques78
  • Home Remedies70
  • SEO Techniques67
  • Programming62
  • Automobiles57
  • Fashion & Fantacy53
  • Easy Recipes52

Our Popular Links

BootStrap Dropdown list with Checkbox Selected values will Show
Cheapest Cloud Hosting Services for Node.js Applications
How to keep Mashed Potatoes Warm all Dinner Long?
List of Linux Website Hosting Companies
Cheapest Hosting Plans for Joomla Blogs
Linux, PHP, MySQL Hosting Solutions for Freelancers
Hosting Plans for Large Enterprise Websites
Vitamin K Is the Solution Said to Fade Dark Circles
Hosting Limitations for Shared Servers
Why I will Choose VPS Hosting for Game Applications?
SSD Storage Hosting Services with High-Speed MySQL Servers

Our Web2 Blogs

Home Remedies
SEO Guest Posting
Digital Marketing
Learn Digital Marketing
Blog Posting Services
Blog for Bloggers
SEO Blog
Blog for Tourism

i20 Sidebar Widgets

BBA Entrance Exam Eligibility and Semester Syllabus for Candidates
BBA Entrance Exam Eligibility and Semester Syllabus for Candidates
BBA (Bachelor of Business Administration) is a three years undergraduate degree course in Business Administration. BBA combines a generic course and a business related course....
How Do Vocational Training Partners assist CMS ED Students?
How Do Vocational Training Partners assist CMS ED Students?
The Community Medical Services & Emergency Disaster (CMS ED) program is a vital field in healthcare that equips students with the skills needed to respond...
Why you Should Consider a Locum Tenens Career?
Why you Should Consider a Locum Tenens Career?
Many healthcare providers find the prospect of a locum tenens career appealing, and it isn’t hard to see why. After all, it offers them the...
7 Tips that will help for your better Career Growth
7 Tips that will help you for your better Career Growth
Everyone is worried about their career of what to choose, what to do, which field is better, how to get jobs? These types of questions...
Top 5 things you can expect to learn about Physics in School
Top 5 things you Can expect to Learn Related to Physics in School
Physics has never been a favorite subject of the majority. In fact, students who take on the subject are normally seen as bright students. Through...
Benefits of Studying ICRI's Online PG Diploma Course in Psychology
Benefits of Studying ICRI’s Online PG Diploma Course in Psychology
The human mind fascinates all of us, ICRI, as it provides you with a PGDM course in psychology which makes your choice more accessible if...
GRE Coaching - Increase Chances of being Successful
GRE Coaching – Increase Chances of being Successful
The full form of GRE is Graduate Record Examination. This is a standardized test which is required to admit into the graduate Schools of United...
Choosing between CCA and Other Certifications in the IT Industry
Choosing between CCA and Other Certifications in the IT Industry
In today’s rapidly evolving IT landscape, certifications play a pivotal role in shaping a successful career. With so many options available, it can be overwhelming...
Academia, Government, or Industry? Which Is Right for You?
Academia, Government or Industry? Which Is Right for You?
Even if the competition to find job is becoming very aggressive, many Ph.D. were find jobs eventually in universities, administration in government sector and biochemical...
Inspect few of the popular lines of MBA Study in India (Flavors of MBA)
Inspect few of the popular lines of MBA Study in India (Flavors of MBA)
In today’s highly competitive job market, graduation alone is not enough to secure an employment offer. Hence, more and more people are opting do a...
Tips to prepare Static GK or Quizs for your Bank Exams
Tips to prepare Static GK or Quizs for your Bank Exams
Static general knowledge is one among the topics in all bank mains examination. Static GK is the facts that won’t be change anywhere. Candidates have...
SDLC - Software Development Life Cycle Models and Methodologies
SDLC – Software Development Life Cycle Models and Methodologies
The software development life cycle changes a lot and it all comes down to finding the right approach that suits your needs. The challenge with...

New Releases

YouTube Advertising Advantages, Limitations and best Practices
November 30, 2025

YouTube Advertising Advantages, Limitations and best Practices

YouTube has become one of the most influential digital platforms for advertising, offering businesses a dynamic way to reach global audiences. With billions of users…

Beyond the Mirror: The Rise of Preventive Skincare in Modern Wellness
November 24, 2025
Beyond the Mirror: The Rise of Preventive Skincare in Modern Wellness
WordPress Custom plugin Development Tutorial with Sample Codes
November 24, 2025
WordPress Custom plugin Development Tutorial with Sample Codes
b2b Email Marketing jobs and ZOHO Campaigns for professionals
July 7, 2025
b2b Email Marketing jobs and ZOHO Campaigns for professionals
YouTube Marketing Techniques to minimize Advertising Costs
July 2, 2025
YouTube Marketing Techniques to minimize Advertising Costs
Natural Hair Plantation for Women of any Age no Surgery
July 1, 2025
Natural Hair Plantation for Women of any Age with no Surgery
Eyeliner for Hooded Eyes to apply before applying Eyeshadow
July 1, 2025
Eyeliner for Hooded Eyes to apply before applying Eyeshadow
Comparing Paid and Free Website Builder for Small Business
July 1, 2025
Comparing Paid and Free Website Builder for Small Business
Google Search Console for SEO Tools for every Webmaster
July 1, 2025
Google Search Console for SEO Tools for every Webmaster
Digital Marketing Guest Post best practices to boost Sales
July 1, 2025
Digital Marketing Guest Post best practices to boost Sales
Deep Stretch Marks on Thighs and Belly during Pregnancy
June 26, 2025
Deep Stretch Marks on Thighs and Belly areas during Pregnancy
Fade Pregnancy Stretch Marks appear as Streaks or Lines on the Skin
June 26, 2025
Fade Pregnancy Stretch Marks appear as Streaks or Lines on the Skin
The best Guest Posting Website to boost your Online Presence
June 26, 2025
The best Guest Posting Website to boost your Online Presence
Digital Marketing Firms for Startup WordPress Blogs
June 25, 2025
Hi-Tech Digital Marketing Firms for Startup WordPress Blogs
Best Foods and 7 Day Diet Plan for Weight Loss help for Housewives
June 25, 2025
Prescribed Best Foods with 7 Day Diet Plan for Weight Loss Journey
Advanced Stage 3 Breast Cancer in Men and Women
June 25, 2025
Advanced Stage 3 Breast Cancer in Men and Women but Treatable
Explain Digital Marketing to Content Marketers for Leads
June 25, 2025
Explain Digital Marketing to Content Marketers for Sales Leads
Best Digital Marketing Agencies to boost AdSense Earning
June 24, 2025
Best Digital Marketing Agencies to boost AdSense Earning
explore us...
On-page SEO booster,
Google Friendly,
XML based
PHP/WP Sidebar
FREE Widgets
demo

OUR FACILITIES

  • Login
  • Our Background
  • Privacy
  • WordPress.org

CONTACT INFO

  • Reach Us
  • WhatsApp +919096266548

OUR SERVICES

  • Blog Posting Opportunity
  • *.fig, *.psd 2 html
  • Video Ads Designing
  • Setup your WordPress Blog
  • Optimizing Google PageSpeed
  • b2b Gmail IDs

WHY ONESTOP?

We are here to bring high Quality Information. As a multi-niche platform we have spend several years for Collecting various useful Stories. Dream to establish a domain where from you can get all your day today required information. We covers Animals to Zoology.
©2014-2025 JHARAPHULA, ALL RIGHTS RESERVED.