SUBBUINDESIGN Blog

Everything You Need to Know About Responsive Logo Design

In today’s digital landscape, responsive logo design has become an essential consideration for brands. With users accessing websites and platforms on a wide variety of devices—from smartphones and tablets to laptops and large monitors—a...

How to Plan Your First Successful Website

Creating your first website can be both exciting and challenging. A well-planned website not only enhances your online presence but also plays a crucial role in connecting with your audience and achieving your business...

How Web Designers Can Stay Relevant in the Age of AI

As artificial intelligence (AI) continues to reshape the landscape of web design, many designers wonder how to keep their skills relevant. With AI tools becoming more sophisticated, it’s easy to feel that design work...

How to Write World-Beating Web Content in 2024

In the ever-competitive digital world, crafting web content that stands out from the noise is an art form. It’s not enough to simply string together words—creating world-beating web content requires strategy, creativity, and a...

Deploying to GitHub Pages

In the world of web development, publishing your project online is a crucial step in showcasing your work. One of the easiest and most cost-effective ways to deploy static websites is through GitHub Pages....

Building an eCommerce Website in WordPress

These simple tips for making your WordPress ecommerce site a success. Use them as a checklist for reviewing your current site and then make a list of what you can easily implement. Small improvements like these...

Google AdWords Tips

We do a lot of audits of AdWords accounts to give advertisers a “second opinion” on the account and give them recommendations on how to improve things. And having been behind the scenes of...

What is SEO?

SEO means Search Engine Optimization. In this we will make your website more search engines (Google, Bing, etc) friendly. When ever somebody search something related to your products/services, then your site should be in...

Password Strength

$(‘#pass’).keyup(function(e) { var strongRegex = new RegExp(“^(?=.{8,})(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*\\W).*$”, “g”); var mediumRegex = new RegExp(“^(?=.{7,})(((?=.*[A-Z])(?=.*[a-z]))|((?=.*[A-Z])(?=.*[0-9]))|((?=.*[a-z])(?=.*[0-9]))).*$”, “g”); var enoughRegex = new RegExp(“(?=.{6,}).*”, “g”); if (false == enoughRegex.test($(this).val())) { $(‘#passstrength’).html(‘More Characters’); } else if (strongRegex.test($(this).val())) { $(‘#passstrength’).className =...

Image Preloader

Very easy way to preload images which are needed later (e.g. when a hover is performed) <script type=”text/javascript”> $.preloadImages = function() { for(var i = 0; i<arguments.length; i++) { $(“<img />”).attr(“src”, arguments[i]); } }...

How to add .html extension to Pages?

Recently creating a WordPress site and i noticed a little problem, you can add .html in the settings which work fine for POSTS but not pages! I wrote a small plugin that will add...

Exclude $(this) from Selector

Let’s say you want to attach a click handler to every link on a page. The function for that click handler turns all the other links a different color var $allLinks = $(“a”); $allLinks.click(function() { $allLinks.not(this).css(“color”,...

Top 10+ jQuery Popup window plugins

. 1. Speedo Popup jQuery Plugin Speedo Popup is a powerful popup / modal plugin. It`s fully RESPONSIVE and is designed to provide an optimal viewing experience. Also has compatibility for HTML5 and CSS3 and...

Common jQuery Mistakes

I have listed down 10 common jQuery mistakes from my personal experience and their fixes that you might be also doing while writing jQuery code.   1. Be courageous to remove jQuery Sometimes things can be...