Add event to a specific marker using javascript or jQuery 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 experienceHow do JavaScript closures work?Add table row in jQueryHow do I check if an element is hidden in jQuery?Setting “checked” for a checkbox with jQuery?How to insert an item into an array at a specific index (JavaScript)?How to check whether a checkbox is checked in jQuery?What does “use strict” do in JavaScript, and what is the reasoning behind it?How to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?“Thinking in AngularJS” if I have a jQuery background?

Is every episode of "Where are my Pants?" identical?

US Healthcare consultation for visitors

Are spiders unable to hurt humans, especially very small spiders?

Could an empire control the whole planet with today's comunication methods?

Deal with toxic manager when you can't quit

Keeping a retro style to sci-fi spaceships?

For what reasons would an animal species NOT cross a *horizontal* land bridge?

Did the UK government pay "millions and millions of dollars" to try to snag Julian Assange?

What information about me do stores get via my credit card?

How to support a colleague who finds meetings extremely tiring?

What's the point in a preamp?

Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?

What happens to a Warlock's expended Spell Slots when they gain a Level?

Identify 80s or 90s comics with ripped creatures (not dwarves)

Do working physicists consider Newtonian mechanics to be "falsified"?

How to determine omitted units in a publication

Is there a way to generate uniformly distributed points on a sphere from a fixed amount of random real numbers per point?

Does Parliament hold absolute power in the UK?

Didn't get enough time to take a Coding Test - what to do now?

How did passengers keep warm on sail ships?

Presidential Pardon

should truth entail possible truth

How do I design a circuit to convert a 100 mV and 50 Hz sine wave to a square wave?

Using dividends to reduce short term capital gains?



Add event to a specific marker using javascript or jQuery



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 experienceHow do JavaScript closures work?Add table row in jQueryHow do I check if an element is hidden in jQuery?Setting “checked” for a checkbox with jQuery?How to insert an item into an array at a specific index (JavaScript)?How to check whether a checkbox is checked in jQuery?What does “use strict” do in JavaScript, and what is the reasoning behind it?How to check whether a string contains a substring in JavaScript?How do I remove a particular element from an array in JavaScript?“Thinking in AngularJS” if I have a jQuery background?



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








1















I have a simple HTML 5 video player which I have added timeline markers.



I would like to add an event into a specific marker eg on click to play another video or show another div or text,



Here is what I have so far



 var video = videojs('video1');
//load markers
video.markers(

markers: [
time: 7,
class: "first_step_circle"
,

time: 16,
text: "is",
class: "second_step_circle"
,

time: 23.6,
text: "so"
,

time: 28,
text: "cool"

]
);

$('.second_step_circle').on('click', function()
openPopUp('.persona2PopUp');
console.log(openPopUp('.persona2PopUp'))
)


Here is div I want to show to my video player



<div class="lightbox persona2PopUp">
<img src="images/Matt.jpg">
<h5>Matt Briscoe</h5>
<p>Role: Developer</p>
<p>Bio: Matt has been a manager for 4 years. This alkjdlas asldkjasldj aslkdj aklsdjlsakdjalskjd salkdj salkjd</p>
<p>Previous Experiences</p>
<ul>
<li>Experience 1: 2002-2004</li>
<li>Experience 2: 2005-2009</li>
<li>Experience 3: 2010-2016</li>
</ul>
</div>


When I check class with name second_step_circle in DOM it's available, but when I click nothing is happening , here is docs for videojs marker videojs marker .



what do I need to change to get what I want?










share|improve this question



















  • 1





    Two ways I think you can use .. 1st: with onMarkerClick the plugin built in function .. 2nd: to use $(document).on('click' , '.second_step_circle', function(){

    – Mohamed-Yousef
    Mar 22 at 0:40


















1















I have a simple HTML 5 video player which I have added timeline markers.



I would like to add an event into a specific marker eg on click to play another video or show another div or text,



Here is what I have so far



 var video = videojs('video1');
//load markers
video.markers(

markers: [
time: 7,
class: "first_step_circle"
,

time: 16,
text: "is",
class: "second_step_circle"
,

time: 23.6,
text: "so"
,

time: 28,
text: "cool"

]
);

$('.second_step_circle').on('click', function()
openPopUp('.persona2PopUp');
console.log(openPopUp('.persona2PopUp'))
)


Here is div I want to show to my video player



<div class="lightbox persona2PopUp">
<img src="images/Matt.jpg">
<h5>Matt Briscoe</h5>
<p>Role: Developer</p>
<p>Bio: Matt has been a manager for 4 years. This alkjdlas asldkjasldj aslkdj aklsdjlsakdjalskjd salkdj salkjd</p>
<p>Previous Experiences</p>
<ul>
<li>Experience 1: 2002-2004</li>
<li>Experience 2: 2005-2009</li>
<li>Experience 3: 2010-2016</li>
</ul>
</div>


When I check class with name second_step_circle in DOM it's available, but when I click nothing is happening , here is docs for videojs marker videojs marker .



what do I need to change to get what I want?










share|improve this question



















  • 1





    Two ways I think you can use .. 1st: with onMarkerClick the plugin built in function .. 2nd: to use $(document).on('click' , '.second_step_circle', function(){

    – Mohamed-Yousef
    Mar 22 at 0:40














1












1








1








I have a simple HTML 5 video player which I have added timeline markers.



I would like to add an event into a specific marker eg on click to play another video or show another div or text,



Here is what I have so far



 var video = videojs('video1');
//load markers
video.markers(

markers: [
time: 7,
class: "first_step_circle"
,

time: 16,
text: "is",
class: "second_step_circle"
,

time: 23.6,
text: "so"
,

time: 28,
text: "cool"

]
);

$('.second_step_circle').on('click', function()
openPopUp('.persona2PopUp');
console.log(openPopUp('.persona2PopUp'))
)


Here is div I want to show to my video player



<div class="lightbox persona2PopUp">
<img src="images/Matt.jpg">
<h5>Matt Briscoe</h5>
<p>Role: Developer</p>
<p>Bio: Matt has been a manager for 4 years. This alkjdlas asldkjasldj aslkdj aklsdjlsakdjalskjd salkdj salkjd</p>
<p>Previous Experiences</p>
<ul>
<li>Experience 1: 2002-2004</li>
<li>Experience 2: 2005-2009</li>
<li>Experience 3: 2010-2016</li>
</ul>
</div>


When I check class with name second_step_circle in DOM it's available, but when I click nothing is happening , here is docs for videojs marker videojs marker .



what do I need to change to get what I want?










share|improve this question
















I have a simple HTML 5 video player which I have added timeline markers.



I would like to add an event into a specific marker eg on click to play another video or show another div or text,



Here is what I have so far



 var video = videojs('video1');
//load markers
video.markers(

markers: [
time: 7,
class: "first_step_circle"
,

time: 16,
text: "is",
class: "second_step_circle"
,

time: 23.6,
text: "so"
,

time: 28,
text: "cool"

]
);

$('.second_step_circle').on('click', function()
openPopUp('.persona2PopUp');
console.log(openPopUp('.persona2PopUp'))
)


Here is div I want to show to my video player



<div class="lightbox persona2PopUp">
<img src="images/Matt.jpg">
<h5>Matt Briscoe</h5>
<p>Role: Developer</p>
<p>Bio: Matt has been a manager for 4 years. This alkjdlas asldkjasldj aslkdj aklsdjlsakdjalskjd salkdj salkjd</p>
<p>Previous Experiences</p>
<ul>
<li>Experience 1: 2002-2004</li>
<li>Experience 2: 2005-2009</li>
<li>Experience 3: 2010-2016</li>
</ul>
</div>


When I check class with name second_step_circle in DOM it's available, but when I click nothing is happening , here is docs for videojs marker videojs marker .



what do I need to change to get what I want?







javascript jquery html html5






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 22 at 5:48









marc_s

585k13011251272




585k13011251272










asked Mar 22 at 0:27









user9964622user9964622

1,25421845




1,25421845







  • 1





    Two ways I think you can use .. 1st: with onMarkerClick the plugin built in function .. 2nd: to use $(document).on('click' , '.second_step_circle', function(){

    – Mohamed-Yousef
    Mar 22 at 0:40













  • 1





    Two ways I think you can use .. 1st: with onMarkerClick the plugin built in function .. 2nd: to use $(document).on('click' , '.second_step_circle', function(){

    – Mohamed-Yousef
    Mar 22 at 0:40








1




1





Two ways I think you can use .. 1st: with onMarkerClick the plugin built in function .. 2nd: to use $(document).on('click' , '.second_step_circle', function(){

– Mohamed-Yousef
Mar 22 at 0:40






Two ways I think you can use .. 1st: with onMarkerClick the plugin built in function .. 2nd: to use $(document).on('click' , '.second_step_circle', function(){

– Mohamed-Yousef
Mar 22 at 0:40













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%2f55291154%2fadd-event-to-a-specific-marker-using-javascript-or-jquery%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%2f55291154%2fadd-event-to-a-specific-marker-using-javascript-or-jquery%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

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript