img onclick function immediately proceeds to called functions Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern) Data science time! April 2019 and salary with experience The Ask Question Wizard is Live!When to use IMG vs. CSS background-image?Inputting a default image in case the src attribute of an html <img> is not valid?Is it possible to set the equivalent of a src attribute of an img tag in CSS?Programmatically change the src of an img tagjQuery img src change not immediateimg src SVG changing the fill colorchanging img onclick using jqueryOnClick Event not invoking on IMG Tagjavascript change img onclick according to an img that was clickedCalling external php function in <img>

Do wooden building fires get hotter than 600°C?

NumericArray versus PackedArray in MMA12

Using et al. for a last / senior author rather than for a first author

How could we fake a moon landing now?

Disembodied hand growing fangs

How to install press fit bottom bracket into new frame

Drawing without replacement: why is the order of draw irrelevant?

Maximum summed subsequences with non-adjacent items

Why do we need to use the builder design pattern when we can do the same thing with setters?

ArcGIS Pro Python arcpy.CreatePersonalGDB_management

How do I use the new nonlinear finite element in Mathematica 12 for this equation?

SF book about people trapped in a series of worlds they imagine

Do any jurisdictions seriously consider reclassifying social media websites as publishers?

Is grep documentation about ignoring case wrong, since it doesn't ignore case in filenames?

Why wasn't DOSKEY integrated with COMMAND.COM?

Is it possible for SQL statements to execute concurrently within a single session in SQL Server?

Is there any word for a place full of confusion?

Is it fair for a professor to grade us on the possession of past papers?

Localisation of Category

Selecting user stories during sprint planning

Why is it faster to reheat something than it is to cook it?

What is the difference between globalisation and imperialism?

Multiple OR (||) Conditions in If Statement

How to compare two different files line by line in unix?



img onclick function immediately proceeds to called functions



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)
Data science time! April 2019 and salary with experience
The Ask Question Wizard is Live!When to use IMG vs. CSS background-image?Inputting a default image in case the src attribute of an html <img> is not valid?Is it possible to set the equivalent of a src attribute of an img tag in CSS?Programmatically change the src of an img tagjQuery img src change not immediateimg src SVG changing the fill colorchanging img onclick using jqueryOnClick Event not invoking on IMG Tagjavascript change img onclick according to an img that was clickedCalling external php function in <img>



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















When I click on the img as below and proceed to the processToolClick function the 2 eventListener events are executed rather than waiting for the mouseup or mousedown event to occur before proceeding. I have tried anonymous functions and .bind which seem to prevent acc3ess to the processToolClick function. How do I stop with the onclick and await the mousup or mousedown event?



 <img src="graphicPaneResources/linetool.png" alt="Line Tool" onClick = "processToolClick(this, event)";>

function processToolClick(elem, evt) {
let tmpToolName = elem.src;
tmpToolName = tmpToolName.substring(tmpToolName.lastIndexOf("/")+1);
tmpToolName = tmpToolName.substring(0, tmpToolName.indexOf("."));
switch(tmpToolName)
case "linetool":
console.log("OK "+tmpToolName+" "+evt)
toolSelection = "linetool";
canvas.addEventListener("onmousedown", lineDrawer.startLine(evt));
canvas.addEventListener("onmouseup", lineDrawer.endLine(evt));
lineDrawer.processLine(evt);
break;
default:










share|improve this question




























    0















    When I click on the img as below and proceed to the processToolClick function the 2 eventListener events are executed rather than waiting for the mouseup or mousedown event to occur before proceeding. I have tried anonymous functions and .bind which seem to prevent acc3ess to the processToolClick function. How do I stop with the onclick and await the mousup or mousedown event?



     <img src="graphicPaneResources/linetool.png" alt="Line Tool" onClick = "processToolClick(this, event)";>

    function processToolClick(elem, evt) {
    let tmpToolName = elem.src;
    tmpToolName = tmpToolName.substring(tmpToolName.lastIndexOf("/")+1);
    tmpToolName = tmpToolName.substring(0, tmpToolName.indexOf("."));
    switch(tmpToolName)
    case "linetool":
    console.log("OK "+tmpToolName+" "+evt)
    toolSelection = "linetool";
    canvas.addEventListener("onmousedown", lineDrawer.startLine(evt));
    canvas.addEventListener("onmouseup", lineDrawer.endLine(evt));
    lineDrawer.processLine(evt);
    break;
    default:










    share|improve this question
























      0












      0








      0








      When I click on the img as below and proceed to the processToolClick function the 2 eventListener events are executed rather than waiting for the mouseup or mousedown event to occur before proceeding. I have tried anonymous functions and .bind which seem to prevent acc3ess to the processToolClick function. How do I stop with the onclick and await the mousup or mousedown event?



       <img src="graphicPaneResources/linetool.png" alt="Line Tool" onClick = "processToolClick(this, event)";>

      function processToolClick(elem, evt) {
      let tmpToolName = elem.src;
      tmpToolName = tmpToolName.substring(tmpToolName.lastIndexOf("/")+1);
      tmpToolName = tmpToolName.substring(0, tmpToolName.indexOf("."));
      switch(tmpToolName)
      case "linetool":
      console.log("OK "+tmpToolName+" "+evt)
      toolSelection = "linetool";
      canvas.addEventListener("onmousedown", lineDrawer.startLine(evt));
      canvas.addEventListener("onmouseup", lineDrawer.endLine(evt));
      lineDrawer.processLine(evt);
      break;
      default:










      share|improve this question














      When I click on the img as below and proceed to the processToolClick function the 2 eventListener events are executed rather than waiting for the mouseup or mousedown event to occur before proceeding. I have tried anonymous functions and .bind which seem to prevent acc3ess to the processToolClick function. How do I stop with the onclick and await the mousup or mousedown event?



       <img src="graphicPaneResources/linetool.png" alt="Line Tool" onClick = "processToolClick(this, event)";>

      function processToolClick(elem, evt) {
      let tmpToolName = elem.src;
      tmpToolName = tmpToolName.substring(tmpToolName.lastIndexOf("/")+1);
      tmpToolName = tmpToolName.substring(0, tmpToolName.indexOf("."));
      switch(tmpToolName)
      case "linetool":
      console.log("OK "+tmpToolName+" "+evt)
      toolSelection = "linetool";
      canvas.addEventListener("onmousedown", lineDrawer.startLine(evt));
      canvas.addEventListener("onmouseup", lineDrawer.endLine(evt));
      lineDrawer.processLine(evt);
      break;
      default:







      image






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 8 at 19:59









      Ed AndersonEd Anderson

      12




      12






















          0






          active

          oldest

          votes












          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',
          autoActivateHeartbeat: false,
          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%2f55070198%2fimg-onclick-function-immediately-proceeds-to-called-functions%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55070198%2fimg-onclick-function-immediately-proceeds-to-called-functions%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

          AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

          Алба-Юлія

          Захаров Федір Захарович