Floating Buttons with Vertical Menu
- Posted by langagemachine (6) Offline
Hi,
I use Vertical Menu : verticalmenu.demo.offlajn.com/
It's possiblet to trigger menu opening from element id, link, ...
I want to open the menu with menu item of vertical menu module.
It works but it's not the best solution because the page must be refresh after the menu can open
The Vertical Menu module allow to insert this javascript code
$(".openmenu").click(function(e) {
e.stopPropagation();
e.preventDefault();
if(sm.popup) {
sm.openPopup();
} else {
sm.openMenu();
}
});
The menu may open if you add code =open
www.mystie/index.php=open
I contact the developper of Vertical Menu and he tells me that the ideal is to add a class parameter for the menu items of your module and after that it's possible to trigger the vertical menu with a class.
My site is on developpment and you can see it here :
Printscreen : prnt.sc/v0e227
www.add-line.com/test4/index.php?option=...cle&id=20&Itemid=232
4 years 2 months ago #1
by langagemachine
I use Vertical Menu : verticalmenu.demo.offlajn.com/
It's possiblet to trigger menu opening from element id, link, ...
I want to open the menu with menu item of vertical menu module.
It works but it's not the best solution because the page must be refresh after the menu can open
The Vertical Menu module allow to insert this javascript code
$(".openmenu").click(function(e) {
e.stopPropagation();
e.preventDefault();
if(sm.popup) {
sm.openPopup();
} else {
sm.openMenu();
}
});
The menu may open if you add code =open
www.mystie/index.php=open
I contact the developper of Vertical Menu and he tells me that the ideal is to add a class parameter for the menu items of your module and after that it's possible to trigger the vertical menu with a class.
My site is on developpment and you can see it here :
Printscreen : prnt.sc/v0e227
www.add-line.com/test4/index.php?option=...cle&id=20&Itemid=232
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5261) Offline
Hi, Try this
4 years 2 months ago #2
by TemplatePlazza
$(".jfab_btns_wrapper>div:first-child").click(function(e) {
e.stopPropagation();
e.preventDefault();
if(sm.popup) {
sm.openPopup();
} else {
sm.openMenu();
}
});
Please Log in or Create an account to join the conversation.
- Posted by langagemachine (6) Offline
Hi,
i change the code by your's.
I forgive tto informe an additional line
Here the complete code
$(".jfab_btns_wrapper>div:first-child").click(function(e) {
e.stopPropagation();
e.preventDefault();
if(sm.popup) {
sm.openPopup();
} else {
sm.openMenu();
}
});
location.search.match('menu=open') && sm147.openMenu();
We progress ! Thanks.
Just the page Menu appear and appear too 1 seconde after
When i choose a menu item and i return to precedent page, my menu open too.
I test to iphone
In firefox th epage loading too.
4 years 2 months ago #3
by langagemachine
i change the code by your's.
I forgive tto informe an additional line
Here the complete code
$(".jfab_btns_wrapper>div:first-child").click(function(e) {
e.stopPropagation();
e.preventDefault();
if(sm.popup) {
sm.openPopup();
} else {
sm.openMenu();
}
});
location.search.match('menu=open') && sm147.openMenu();
We progress ! Thanks.
Just the page Menu appear and appear too 1 seconde after
When i choose a menu item and i return to precedent page, my menu open too.
I test to iphone
In firefox th epage loading too.
Please Log in or Create an account to join the conversation.
- Posted by langagemachine (6) Offline
- Posted by langagemachine (6) Offline
Thanks,
how can i give you confidential access not visible in forum ?
4 years 2 months ago #5
by langagemachine
how can i give you confidential access not visible in forum ?
Please Log in or Create an account to join the conversation.
- Posted by TemplatePlazza (5261) Offline
Hi langagemachine,
4 years 2 months ago #6
by TemplatePlazza
I just tried it and it opens immediately but indeed the page is refreshed so the modal opened twice. I'm not familiar with vertical menu codebase so I think it's better to ask vertical menu developer and asking their assistance.Just the page Menu appear and appear too 1 seconde after
Please Log in or Create an account to join the conversation.