Category: Uncategorized
-
RTL
This chapter discusses about RTL (right to left) support provided by Bootstrap. The RTL feature supports for right-to-left text across your layout, components and utilities. Requirements To enable RTL in pages powered by Bootstrap, you must fulfill the two requirements. They are as follows: You need to include the RTL version of CSS. For example,…
-
Clean Up Toxic Links
Anyone who has used link building for SEO over the last several years will tell you that the biggest and most serious concern with the method is being penalised for publishing spammy links. The age of quantity-based link evaluation is over, thanks to updates to Google’s core algorithm, notably Google SpamBrain. The search engine giant…
-
JavaScript Debugging
Sometimes a code may contain certain mistakes. Being a scripting language, JavaScript didn’t show any error message in a browser. But these mistakes can affect the output. The best practice to find out the error is to debug the code. The code can be debugged easily by using web browsers like Google Chrome, Mozilla Firebox.…
-
Javascript – innerHTML
The innerHTML property can be used to write the dynamic html on the html document. It is used mostly in the web pages to generate the dynamic html such as registration form, comment form, links etc. Example of innerHTML property In this example, we are going to create the html form when user clicks on the button.…