JQuery issue hover on desktop, click on mobile & tablet
up vote
0
down vote
favorite
I am using the following JQuery in a project of mine to make top level menu links click once to open a submenu then, click the same top level link again to go to its URL. The code works fine in mobile and tablet, but now it as affected the desktop menu hover on top level links. I would like to have this code only work for mobile and tablet devices under 768px. Any help is appreciated. Thanks.
$(document).ready(function () {
$(‘#nav li').children('ul').hide();
$(‘#navl li a').click(function (event) {
var ts=$(this);
var len=$(ts).parent('li').has('ul').length;
if(len>0)
{
if($(ts).hasClass('clicked'))
{
}
else
{
$(ts).parent('li').find('ul').first().slideDown();
$(ts).addClass('clicked');
return false;
}
}
})
});
jquery mobile hover click desktop
add a comment |
up vote
0
down vote
favorite
I am using the following JQuery in a project of mine to make top level menu links click once to open a submenu then, click the same top level link again to go to its URL. The code works fine in mobile and tablet, but now it as affected the desktop menu hover on top level links. I would like to have this code only work for mobile and tablet devices under 768px. Any help is appreciated. Thanks.
$(document).ready(function () {
$(‘#nav li').children('ul').hide();
$(‘#navl li a').click(function (event) {
var ts=$(this);
var len=$(ts).parent('li').has('ul').length;
if(len>0)
{
if($(ts).hasClass('clicked'))
{
}
else
{
$(ts).parent('li').find('ul').first().slideDown();
$(ts).addClass('clicked');
return false;
}
}
})
});
jquery mobile hover click desktop
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am using the following JQuery in a project of mine to make top level menu links click once to open a submenu then, click the same top level link again to go to its URL. The code works fine in mobile and tablet, but now it as affected the desktop menu hover on top level links. I would like to have this code only work for mobile and tablet devices under 768px. Any help is appreciated. Thanks.
$(document).ready(function () {
$(‘#nav li').children('ul').hide();
$(‘#navl li a').click(function (event) {
var ts=$(this);
var len=$(ts).parent('li').has('ul').length;
if(len>0)
{
if($(ts).hasClass('clicked'))
{
}
else
{
$(ts).parent('li').find('ul').first().slideDown();
$(ts).addClass('clicked');
return false;
}
}
})
});
jquery mobile hover click desktop
I am using the following JQuery in a project of mine to make top level menu links click once to open a submenu then, click the same top level link again to go to its URL. The code works fine in mobile and tablet, but now it as affected the desktop menu hover on top level links. I would like to have this code only work for mobile and tablet devices under 768px. Any help is appreciated. Thanks.
$(document).ready(function () {
$(‘#nav li').children('ul').hide();
$(‘#navl li a').click(function (event) {
var ts=$(this);
var len=$(ts).parent('li').has('ul').length;
if(len>0)
{
if($(ts).hasClass('clicked'))
{
}
else
{
$(ts).parent('li').find('ul').first().slideDown();
$(ts).addClass('clicked');
return false;
}
}
})
});
jquery mobile hover click desktop
jquery mobile hover click desktop
asked Nov 21 at 1:57
jfin
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
I think you could use jQuery to check the resolution of the webpage when displayed:
$(window).resize(function () {
if ($(window).width() < 768) {
//Do something or in this case, put the code that needs to run under this situation
}
});
This will check the resolution of the webpage/browser everytime it changes.
Also I noticed that in your code, you have this: $(‘#nav li').
and If my sight is good, there's only one '
, you would have to change it like this: $('#nav li').
And in the line below that, you have the same thing.
Hope it helps you or guides you to another solution!
New contributor
So, I just place my existing code within the if statement curly braces and it should work? Thanks for the help.
– jfin
Nov 21 at 2:30
Yep, it should work.
– Alan Maldonado
Nov 21 at 2:32
I just used the code and on desktop view my submenu still does not appear on hover.
– jfin
Nov 21 at 2:57
Weird, by the way, I noticed that in your code, you have some mistakes, I'll update my answer above to show you.
– Alan Maldonado
Nov 21 at 3:01
I corrected both $('#nav li') and unfortunately, my desktop submenu items still do not show on hover.
– jfin
Nov 21 at 3:25
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
I think you could use jQuery to check the resolution of the webpage when displayed:
$(window).resize(function () {
if ($(window).width() < 768) {
//Do something or in this case, put the code that needs to run under this situation
}
});
This will check the resolution of the webpage/browser everytime it changes.
Also I noticed that in your code, you have this: $(‘#nav li').
and If my sight is good, there's only one '
, you would have to change it like this: $('#nav li').
And in the line below that, you have the same thing.
Hope it helps you or guides you to another solution!
New contributor
So, I just place my existing code within the if statement curly braces and it should work? Thanks for the help.
– jfin
Nov 21 at 2:30
Yep, it should work.
– Alan Maldonado
Nov 21 at 2:32
I just used the code and on desktop view my submenu still does not appear on hover.
– jfin
Nov 21 at 2:57
Weird, by the way, I noticed that in your code, you have some mistakes, I'll update my answer above to show you.
– Alan Maldonado
Nov 21 at 3:01
I corrected both $('#nav li') and unfortunately, my desktop submenu items still do not show on hover.
– jfin
Nov 21 at 3:25
add a comment |
up vote
0
down vote
I think you could use jQuery to check the resolution of the webpage when displayed:
$(window).resize(function () {
if ($(window).width() < 768) {
//Do something or in this case, put the code that needs to run under this situation
}
});
This will check the resolution of the webpage/browser everytime it changes.
Also I noticed that in your code, you have this: $(‘#nav li').
and If my sight is good, there's only one '
, you would have to change it like this: $('#nav li').
And in the line below that, you have the same thing.
Hope it helps you or guides you to another solution!
New contributor
So, I just place my existing code within the if statement curly braces and it should work? Thanks for the help.
– jfin
Nov 21 at 2:30
Yep, it should work.
– Alan Maldonado
Nov 21 at 2:32
I just used the code and on desktop view my submenu still does not appear on hover.
– jfin
Nov 21 at 2:57
Weird, by the way, I noticed that in your code, you have some mistakes, I'll update my answer above to show you.
– Alan Maldonado
Nov 21 at 3:01
I corrected both $('#nav li') and unfortunately, my desktop submenu items still do not show on hover.
– jfin
Nov 21 at 3:25
add a comment |
up vote
0
down vote
up vote
0
down vote
I think you could use jQuery to check the resolution of the webpage when displayed:
$(window).resize(function () {
if ($(window).width() < 768) {
//Do something or in this case, put the code that needs to run under this situation
}
});
This will check the resolution of the webpage/browser everytime it changes.
Also I noticed that in your code, you have this: $(‘#nav li').
and If my sight is good, there's only one '
, you would have to change it like this: $('#nav li').
And in the line below that, you have the same thing.
Hope it helps you or guides you to another solution!
New contributor
I think you could use jQuery to check the resolution of the webpage when displayed:
$(window).resize(function () {
if ($(window).width() < 768) {
//Do something or in this case, put the code that needs to run under this situation
}
});
This will check the resolution of the webpage/browser everytime it changes.
Also I noticed that in your code, you have this: $(‘#nav li').
and If my sight is good, there's only one '
, you would have to change it like this: $('#nav li').
And in the line below that, you have the same thing.
Hope it helps you or guides you to another solution!
New contributor
edited Nov 21 at 3:03
New contributor
answered Nov 21 at 2:12
Alan Maldonado
198
198
New contributor
New contributor
So, I just place my existing code within the if statement curly braces and it should work? Thanks for the help.
– jfin
Nov 21 at 2:30
Yep, it should work.
– Alan Maldonado
Nov 21 at 2:32
I just used the code and on desktop view my submenu still does not appear on hover.
– jfin
Nov 21 at 2:57
Weird, by the way, I noticed that in your code, you have some mistakes, I'll update my answer above to show you.
– Alan Maldonado
Nov 21 at 3:01
I corrected both $('#nav li') and unfortunately, my desktop submenu items still do not show on hover.
– jfin
Nov 21 at 3:25
add a comment |
So, I just place my existing code within the if statement curly braces and it should work? Thanks for the help.
– jfin
Nov 21 at 2:30
Yep, it should work.
– Alan Maldonado
Nov 21 at 2:32
I just used the code and on desktop view my submenu still does not appear on hover.
– jfin
Nov 21 at 2:57
Weird, by the way, I noticed that in your code, you have some mistakes, I'll update my answer above to show you.
– Alan Maldonado
Nov 21 at 3:01
I corrected both $('#nav li') and unfortunately, my desktop submenu items still do not show on hover.
– jfin
Nov 21 at 3:25
So, I just place my existing code within the if statement curly braces and it should work? Thanks for the help.
– jfin
Nov 21 at 2:30
So, I just place my existing code within the if statement curly braces and it should work? Thanks for the help.
– jfin
Nov 21 at 2:30
Yep, it should work.
– Alan Maldonado
Nov 21 at 2:32
Yep, it should work.
– Alan Maldonado
Nov 21 at 2:32
I just used the code and on desktop view my submenu still does not appear on hover.
– jfin
Nov 21 at 2:57
I just used the code and on desktop view my submenu still does not appear on hover.
– jfin
Nov 21 at 2:57
Weird, by the way, I noticed that in your code, you have some mistakes, I'll update my answer above to show you.
– Alan Maldonado
Nov 21 at 3:01
Weird, by the way, I noticed that in your code, you have some mistakes, I'll update my answer above to show you.
– Alan Maldonado
Nov 21 at 3:01
I corrected both $('#nav li') and unfortunately, my desktop submenu items still do not show on hover.
– jfin
Nov 21 at 3:25
I corrected both $('#nav li') and unfortunately, my desktop submenu items still do not show on hover.
– jfin
Nov 21 at 3:25
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404289%2fjquery-issue-hover-on-desktop-click-on-mobile-tablet%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown