I need to show a popup where the user can choose the language and which section to open (partners, customers, support) and that this choice is kept in the cookies so that the next time he returns that section and the selected language are opened directly, but I don't know how to do this, any ideas? (create the popup if I know how to do it but not how to add this selection and save it)
- Add Language switch in the popup (modal).
- Whatever language selection user made should be stored in Cookie and next time he/she opens, site should open in that specific language saved in it.
I need to show a popup where the user can choose the language and which section to open (partners, customers, support) and that this choice is kept in the cookies so that the next time he returns that section and the selected language are opened directly, but I don't know how to do this, any ideas? (create the popup if I know how to do it but not how to add this selection and save it)
- Add Language switch in the popup (modal).
- Whatever language selection user made should be stored in Cookie and next time he/she opens, site should open in that specific language saved in it.
1 Answer
Reset to default 0First of all you need to create a modal pop up with these parameters. after that you can use cookie js.
<script type="text/javascript" src="https://cdn.jsdelivr/npm/[email protected]/src/js.cookie.min.js"></script>
Remember that you need to include jquery before loading this js. For further details you can refer to https://github/js-cookie/js-cookie
After including above js and Jquery in your code. You can directly use Cookies.set('foo', 'bar')
to set a cookie with name foo
and can access it by Cookies.get('foo')
Now it depends on you how you use it in your program.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744897286a4599771.html
评论列表(0条)