Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8241619
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T20:53:31+00:00 2026-06-07T20:53:31+00:00

To make it easier to read i put everything under the initialize function. Is

  • 0

To make it easier to read i put everything under the initialize function.
Is there something wrong here? The alert gets triggered so it’s not the condition.
I have the share actions hidden and would like to show them on Hover on desktop and Tap on mobile given the hover impossibility.
Am I missing something here?
console.log() doesn’t throw any errors.

App.Views.Title = Backbone.View.extend({

initialize:function(){

    _.bindAll(this,"stickToTop");
    this.template = _.template($("#title").html());
    this.render();
    $(window).scroll(this.stickToTop);

    var isMobile = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/);
    var share = this.$(".share");

    if(isMobile){

        // alert('mobile')
        share.on('click' , this.shareMobile , this);

    }else{
        // alert('not mobile')
        share.on('hover' , this.shareDesktop , this);

    }

},
...
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T20:53:33+00:00Added an answer on June 7, 2026 at 8:53 pm

    I think the problem might be that you’re binding the events the jquery-way not the Backbone way, by using delegateEvents.

    I suggest you to try the following:

    if(isMobile){
    
        // alert('mobile')
        this.delegateEvents({"click .share" : "shareMobile"});
    
    }else{
        // alert('not mobile')
        this.delegateEvents({"hover .share" : "shareDesktop"});
    
    }
    

    Hope this helps.

    ——- UPDATE ——-

    I tested this out myself, you can do this in a very beautiful way!

    First remove all that isMobile and delegate events crap from your initialize method, it just clutters it up! Then make the Backbone.View events hash as a function that returns an events hash (Yes, you CAN do that!)

    events: function() {
      // check for the mobility HERE!
      var isMobile = navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/);
      var events_hash = {
        // insert all the events that go here regardless of mobile or not
      };
      if (isMobile) {
        _.extend(events_hash, {"click .share": "shareMobile"});
      } else {
        _.extend(events_hash, {"hover .share": "shareDesktop"});
      }
      return events_hash;
    }
    

    Et voilà!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

EDIT To make it easier to read I've rewritten my explanation here. In short,
I'm looking for accessibility tool , to make it easier to read pdf's. In
I've cut out a lot of the code to make it easier to read.
I was looking for some library that make easier the manage of the box
I'm looking for the best choice of C++ Mathematics library to make easier some
in order to make things easier for users i want to add multiple keyword
I basically want to make things easier by just looping LinkButtons instead of making
I have some transliteration tables in code that are formated to make it easier
I've got a problem with this situation (i'll try to make it easier) -
I'm trying to split an app.config file into multiple files to make it easier

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.