Making div/pop-up/overlays center of the screen irrespective of the screen size.
Making div/pop-up/overlays center of the screen irrespective of the screen size.
read moreCookie blocked in Iframe for Internet Explorer
When working with chat application recently which uses user sessions, IE is not saving the cookies. This happens when your webpage gets embedded into an iFrame.
Scenario
Lets say we have two websites example.com and anotherexample.com. Now, in anotherexample.com I have an iFrame SRC="http://example.com ...
read moreSocial Logins Implementation for Django app
In this article we will get to know about how to login to your django app by using social logins like Facebook and Google.
Start a simple Django project
$ django-admin.py startproject thirdauth
$ tree thirdauth/
thirdauth/
├── manage.py
└── thirdauth
├── __init__.py
├── settings.py
├── urls.py
└── wsgi.py
Running ./manage.py ...
read moreRestricting tab navigation to overlays(pop-ups)
About : We all have complex pages with several overlays that appear based on selections from several drop down menus and by on-click functionalitys,
Our goal is to limit the user to only be able to tab through the elements on the overlay (above positioned lightbox div) via the keyboard.
In ...
read more