setting cookie using document.cookie issue with iframe

document.cookie not working inside iframe We have a parent page like https://www.parent-page.com – in this page we have an iframe which is https://www.child-page.com/child In the child page we have a line to set a cookie document.cookie = “test1=normal” – it was working normally, suddenly stopped working on Windows 10, Chrome 80.0.3987.132 – but it works with […]

Read More →
ReactJs | CSS and or SASS with react-boilerplate

react-boilerplate This is a very good boilerplate for react with advanced packages. For some reason, I wanted to use scss files, so tried to use css/scss files with this boilerplate. Like mentioned in the documentation, we need to install the devDependencies first, npm i -D sass-loader node-sass Update on webpack config I have tried the […]

Read More →
Tableau with AngularJs

Tableau API and references Tableau charts are very helpful to represent simple/complex data in various chart forms. Recently, got a chance to work with Tableau with AngularJs. First, lets see some useful links that helped me to start thinking: Tableau Javascript API reference – contains the complete classes and their methods/properties – which is very […]

Read More →
AngularJs – jQuery plugin not found issue in directive

jQuery plugin not found issue: We can integrate jQuery plugin by creating a directory and initialise the plugin in the link function. There are many directives are available with this approach. Recently I wanted to integrate intl-tel-input jQuery plugin with an AngularJs project – fortunately couple of directives are available. I have tried with ng-intl-tel-input […]

Read More →