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;
}
}
})


});










share|improve this question


























    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;
    }
    }
    })


    });










    share|improve this question
























      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;
      }
      }
      })


      });










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 21 at 1:57









      jfin

      1




      1
























          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!






          share|improve this answer










          New contributor




          Alan Maldonado is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • 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













          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














           

          draft saved


          draft discarded


















          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

























          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!






          share|improve this answer










          New contributor




          Alan Maldonado is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • 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

















          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!






          share|improve this answer










          New contributor




          Alan Maldonado is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • 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















          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!






          share|improve this answer










          New contributor




          Alan Maldonado is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          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!







          share|improve this answer










          New contributor




          Alan Maldonado is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer








          edited Nov 21 at 3:03





















          New contributor




          Alan Maldonado is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered Nov 21 at 2:12









          Alan Maldonado

          198




          198




          New contributor




          Alan Maldonado is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Alan Maldonado is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Alan Maldonado is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.












          • 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










          • 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




















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          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





















































          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







          Popular posts from this blog

          Berounka

          Sphinx de Gizeh

          Different font size/position of beamer's navigation symbols template's content depending on regular/plain...