To enable CSS Preprocessor SASS/SCSS in Angular 6 project, we have update the config file (angular.json) or we can do it by Angular-CLI
By default, if we run ng new project-name using terminal/cmd, the angular framework will be installed without enabling CSS Preprocessors in angular. To overcome this, follow the simple procedure shared below
Scenario 1: ( Enabling SASS/SCSS in existing Angular project )
Using Angular-CLI
ng config schematics.@schematics/angular:component.styleext...
Tuesday, August 21, 2018
Tuesday, July 17, 2018
Searching and replacing contents in all the wordpress posts and pages is an easy task. You can use either plugin or manually using SQL query. In this article, we will let you know the SQL query to find and replace particular text or word from wp_posts, wp_postmeta tables
Find and replace in wordpress Posts and Pages
Before starting the find and replace in wordpress posts and pages task, take backup of entire website database. If you are good in SQL, then...
Friday, July 13, 2018
Laravel Case Sensitive Query
Eshin Jozer
5:05:00 PM
1
PHP Laravel is one of the popular PHP frameworks. It has many inbuilt functions to reduce developers efforts while developing projects. To perform case sensitive search in laravel, there is no inbuilt function provided as of Laravel 5.6. So, now how we do it ?.
user_table
id
name
1
Eshin
2
Jozer
3
W3schools100
We have to use MySql function BINARY in where clause to perform case sensitive...
Tuesday, July 3, 2018
Bootstrap show/open tabs based on url hash
Eshin Jozer
6:30:00 PM
0
Bootstrap tabs can be switched based on url hash. Bootstrap has provided a jQuery method to open/show tabs programmatically. As we know manual selection of tabs will display appropriate content associated with that particular tab, but to open bootstrap tabs based on url hash follow this blog post by w3schools100
How to add URL hash with a tag
To add URL hash with anchor tag. just append hash value at the end of URL. Example https://w3schools100.blogspot.com/#myCustomHash
Get...
Monday, June 11, 2018
Make youtube video iframe full width 100% to container and height | Responsive Youtube Player
Eshin Jozer
10:01:00 AM
0
Youtube is providing easiest way to embed videos using iframe. For fixed height and width, this works fine. But for responsive designs, we have to do some CSS tricks. Lets go and learn the magic to make youtube video player responsive.
Youtube Responsive Video Player - HTML
<div id="video-wrapper">
<iframe width="560" height="315" src="###" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
Youtube...
Tags
# Css
# Html
Continue Reading
Thursday, May 17, 2018
Creating sticky hello bar is a very easy task. Just css is enough make this. On page scroll, it will be stick at the top of website. This type of notification bars are also call as top fixed bar for website
Sticky bar Using CSS
Copy following html, css codes and paste it below body tag of your website. That's it, you are done. Very easy right ?. Work on it and let us know your feedback via comments.
Note: Overflow: hidden should not be given to parent...
Tags
# Css
Continue Reading
Friday, February 17, 2017
Select2 is one of the best libraries to add in the sections where to need a textbox autocomplete options. Many entry level developers feel easy to do static autocomplete feature but they feel difficult to add dynamic values in select box.
Select2 dynamic autocompete
Here we are going to give code to get get dynamic values in the select2 selectbox based on the input given in select2 textbox.
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css"...
Tags
# Jquery
Continue Reading