How do I pass the value of my onClick event to my second function?How to execute a JavaScript function when I have its name as a stringIs JavaScript a pass-by-reference or pass-by-value language?Set a default parameter value for a JavaScript functionHow can I get query string values in JavaScript?How to get the value from the GET parameters?How can I add a key/value pair to a JavaScript object?How do I pass command line arguments to a Node.js program?Pass a JavaScript function as parameterReact js onClick can't pass value to methodHow to pass props to this.props.children

How were servants to the Kaiser of Imperial Germany treated and where may I find more information on them

How to test the sharpness of a knife?

Pre-Employment Background Check With Consent For Future Checks

Is there a RAID 0 Equivalent for RAM?

How do I fix the group tension caused by my character stealing and possibly killing without provocation?

What does "Scientists rise up against statistical significance" mean? (Comment in Nature)

Animation: customize bounce interpolation

Air travel with refrigerated insulin

Did I make a mistake by ccing email to boss to others?

Personal or impersonal in a technical resume

Why didn’t Eve recognize the little cockroach as a living organism?

How do I tell my boss that I'm quitting in 15 days (a colleague left this week)

Mimic lecturing on blackboard, facing audience

Are Captain Marvel's powers affected by Thanos breaking the Tesseract and claiming the stone?

Can you identify this lizard-like creature I observed in the UK?

Is there a reason to prefer HFS+ over APFS for disk images in High Sierra and/or Mojave?

What is the meaning of the following sentence?

El Dorado Word Puzzle II: Videogame Edition

Does Doodling or Improvising on the Piano Have Any Benefits?

How can I, as DM, avoid the Conga Line of Death occurring when implementing some form of flanking rule?

How do I Interface a PS/2 Keyboard without Modern Techniques?

Why do Radio Buttons not fill the entire outer circle?

When and why was runway 07/25 at Kai Tak removed?

"Oh no!" in Latin



How do I pass the value of my onClick event to my second function?


How to execute a JavaScript function when I have its name as a stringIs JavaScript a pass-by-reference or pass-by-value language?Set a default parameter value for a JavaScript functionHow can I get query string values in JavaScript?How to get the value from the GET parameters?How can I add a key/value pair to a JavaScript object?How do I pass command line arguments to a Node.js program?Pass a JavaScript function as parameterReact js onClick can't pass value to methodHow to pass props to this.props.children













0















Basically I have an <input> field where I start typing in a name. As I type, html pops up with an unordered list <ul> featuring names of my videos from my JSON file. What I'm trying to do is be able to click on the button, and play the video in the <video> player. However, "val.name" is not being passed to function g(); when I click on it.



$('#search').keyup(function() 
var searchField = $('#search').val();
var myExp = new RegExp(searchField, "i");
$.getJSON('data.json', function(data)
var output = '<ul class="searchresults">';
$.each(data, function(key, val)
if (val.name.search(myExp) != -1)
output += '<li>';
output += '<div>'+ val.name +'</div>';
output += '<img src="images/'+ val.name +'.jpg" alt="'+ val.name +'" />';
output += '<button onClick="g('+ val.name +')" >Help Me Here</button>';
output += '</li>';

);
output += '</ul>';
$('#update').html(output);
);
);


function g(e)
$('#videoObj').remove();
$('<video controls preload="metadata" id="videoObj" width="100%" height="720" src="videos/'+e+'.mp4" type="video/mp4" frameborder="0" allowfullscreen><track label="English" kind="subtitles" srclang="en" src="subtitles/'+e+'.vtt" ></video>').prependTo('#vholder').attr('autoplay','autoplay');










share|improve this question
























  • where's the HTML you're targeting? what value IS being passed to the function?

    – Marc
    Mar 7 at 22:11







  • 1





    You need quotes around the string val.name in the line that writes out the onClick handler.

    – James
    Mar 7 at 22:11












  • Please do not construct HTML from JS strings, it only causes trouble if you forget to encode values that should be encoded. Also it is a pain to read and maintain.

    – H.B.
    Mar 7 at 22:16











  • @Marc - If you look at the end of my video tag, the value is being passed within it, and prependTo an ID. Not sure why it didn't wrap around. !

    – Marcus
    Mar 7 at 22:24












  • @James - Thanks! I overlooked that!

    – Marcus
    Mar 7 at 22:26















0















Basically I have an <input> field where I start typing in a name. As I type, html pops up with an unordered list <ul> featuring names of my videos from my JSON file. What I'm trying to do is be able to click on the button, and play the video in the <video> player. However, "val.name" is not being passed to function g(); when I click on it.



$('#search').keyup(function() 
var searchField = $('#search').val();
var myExp = new RegExp(searchField, "i");
$.getJSON('data.json', function(data)
var output = '<ul class="searchresults">';
$.each(data, function(key, val)
if (val.name.search(myExp) != -1)
output += '<li>';
output += '<div>'+ val.name +'</div>';
output += '<img src="images/'+ val.name +'.jpg" alt="'+ val.name +'" />';
output += '<button onClick="g('+ val.name +')" >Help Me Here</button>';
output += '</li>';

);
output += '</ul>';
$('#update').html(output);
);
);


function g(e)
$('#videoObj').remove();
$('<video controls preload="metadata" id="videoObj" width="100%" height="720" src="videos/'+e+'.mp4" type="video/mp4" frameborder="0" allowfullscreen><track label="English" kind="subtitles" srclang="en" src="subtitles/'+e+'.vtt" ></video>').prependTo('#vholder').attr('autoplay','autoplay');










share|improve this question
























  • where's the HTML you're targeting? what value IS being passed to the function?

    – Marc
    Mar 7 at 22:11







  • 1





    You need quotes around the string val.name in the line that writes out the onClick handler.

    – James
    Mar 7 at 22:11












  • Please do not construct HTML from JS strings, it only causes trouble if you forget to encode values that should be encoded. Also it is a pain to read and maintain.

    – H.B.
    Mar 7 at 22:16











  • @Marc - If you look at the end of my video tag, the value is being passed within it, and prependTo an ID. Not sure why it didn't wrap around. !

    – Marcus
    Mar 7 at 22:24












  • @James - Thanks! I overlooked that!

    – Marcus
    Mar 7 at 22:26













0












0








0








Basically I have an <input> field where I start typing in a name. As I type, html pops up with an unordered list <ul> featuring names of my videos from my JSON file. What I'm trying to do is be able to click on the button, and play the video in the <video> player. However, "val.name" is not being passed to function g(); when I click on it.



$('#search').keyup(function() 
var searchField = $('#search').val();
var myExp = new RegExp(searchField, "i");
$.getJSON('data.json', function(data)
var output = '<ul class="searchresults">';
$.each(data, function(key, val)
if (val.name.search(myExp) != -1)
output += '<li>';
output += '<div>'+ val.name +'</div>';
output += '<img src="images/'+ val.name +'.jpg" alt="'+ val.name +'" />';
output += '<button onClick="g('+ val.name +')" >Help Me Here</button>';
output += '</li>';

);
output += '</ul>';
$('#update').html(output);
);
);


function g(e)
$('#videoObj').remove();
$('<video controls preload="metadata" id="videoObj" width="100%" height="720" src="videos/'+e+'.mp4" type="video/mp4" frameborder="0" allowfullscreen><track label="English" kind="subtitles" srclang="en" src="subtitles/'+e+'.vtt" ></video>').prependTo('#vholder').attr('autoplay','autoplay');










share|improve this question
















Basically I have an <input> field where I start typing in a name. As I type, html pops up with an unordered list <ul> featuring names of my videos from my JSON file. What I'm trying to do is be able to click on the button, and play the video in the <video> player. However, "val.name" is not being passed to function g(); when I click on it.



$('#search').keyup(function() 
var searchField = $('#search').val();
var myExp = new RegExp(searchField, "i");
$.getJSON('data.json', function(data)
var output = '<ul class="searchresults">';
$.each(data, function(key, val)
if (val.name.search(myExp) != -1)
output += '<li>';
output += '<div>'+ val.name +'</div>';
output += '<img src="images/'+ val.name +'.jpg" alt="'+ val.name +'" />';
output += '<button onClick="g('+ val.name +')" >Help Me Here</button>';
output += '</li>';

);
output += '</ul>';
$('#update').html(output);
);
);


function g(e)
$('#videoObj').remove();
$('<video controls preload="metadata" id="videoObj" width="100%" height="720" src="videos/'+e+'.mp4" type="video/mp4" frameborder="0" allowfullscreen><track label="English" kind="subtitles" srclang="en" src="subtitles/'+e+'.vtt" ></video>').prependTo('#vholder').attr('autoplay','autoplay');







javascript json






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 10 at 17:42









Mr Lister

35.3k1077121




35.3k1077121










asked Mar 7 at 22:07









MarcusMarcus

38039




38039












  • where's the HTML you're targeting? what value IS being passed to the function?

    – Marc
    Mar 7 at 22:11







  • 1





    You need quotes around the string val.name in the line that writes out the onClick handler.

    – James
    Mar 7 at 22:11












  • Please do not construct HTML from JS strings, it only causes trouble if you forget to encode values that should be encoded. Also it is a pain to read and maintain.

    – H.B.
    Mar 7 at 22:16











  • @Marc - If you look at the end of my video tag, the value is being passed within it, and prependTo an ID. Not sure why it didn't wrap around. !

    – Marcus
    Mar 7 at 22:24












  • @James - Thanks! I overlooked that!

    – Marcus
    Mar 7 at 22:26

















  • where's the HTML you're targeting? what value IS being passed to the function?

    – Marc
    Mar 7 at 22:11







  • 1





    You need quotes around the string val.name in the line that writes out the onClick handler.

    – James
    Mar 7 at 22:11












  • Please do not construct HTML from JS strings, it only causes trouble if you forget to encode values that should be encoded. Also it is a pain to read and maintain.

    – H.B.
    Mar 7 at 22:16











  • @Marc - If you look at the end of my video tag, the value is being passed within it, and prependTo an ID. Not sure why it didn't wrap around. !

    – Marcus
    Mar 7 at 22:24












  • @James - Thanks! I overlooked that!

    – Marcus
    Mar 7 at 22:26
















where's the HTML you're targeting? what value IS being passed to the function?

– Marc
Mar 7 at 22:11






where's the HTML you're targeting? what value IS being passed to the function?

– Marc
Mar 7 at 22:11





1




1





You need quotes around the string val.name in the line that writes out the onClick handler.

– James
Mar 7 at 22:11






You need quotes around the string val.name in the line that writes out the onClick handler.

– James
Mar 7 at 22:11














Please do not construct HTML from JS strings, it only causes trouble if you forget to encode values that should be encoded. Also it is a pain to read and maintain.

– H.B.
Mar 7 at 22:16





Please do not construct HTML from JS strings, it only causes trouble if you forget to encode values that should be encoded. Also it is a pain to read and maintain.

– H.B.
Mar 7 at 22:16













@Marc - If you look at the end of my video tag, the value is being passed within it, and prependTo an ID. Not sure why it didn't wrap around. !

– Marcus
Mar 7 at 22:24






@Marc - If you look at the end of my video tag, the value is being passed within it, and prependTo an ID. Not sure why it didn't wrap around. !

– Marcus
Mar 7 at 22:24














@James - Thanks! I overlooked that!

– Marcus
Mar 7 at 22:26





@James - Thanks! I overlooked that!

– Marcus
Mar 7 at 22:26












1 Answer
1






active

oldest

votes


















1














The html string is malformed. change this



output += '<button onClick="g('+ val.name +')" >Help Me Here</button>'; 


to this



output += '<button onclick="g(''+ val.name +'')" >Help Me Here</button>';





share|improve this answer























  • Well, do you know who is a monkey's Uncle? LMBO...this guy right here! Thanks! Don't know how I continued to overlook this for 3 days now!

    – Marcus
    Mar 7 at 22:23











  • I'm glad it helped. Please accept the answer so it can help others as well.

    – Nawed Khan
    Mar 7 at 22:40











  • How do I do that? I voted it up, but how do I accept?

    – Marcus
    Mar 7 at 23:01











  • there should be a green checkmark next to the question.

    – Nawed Khan
    Mar 7 at 23:23










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%2f55053571%2fhow-do-i-pass-the-value-of-my-onclick-event-to-my-second-function%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









1














The html string is malformed. change this



output += '<button onClick="g('+ val.name +')" >Help Me Here</button>'; 


to this



output += '<button onclick="g(''+ val.name +'')" >Help Me Here</button>';





share|improve this answer























  • Well, do you know who is a monkey's Uncle? LMBO...this guy right here! Thanks! Don't know how I continued to overlook this for 3 days now!

    – Marcus
    Mar 7 at 22:23











  • I'm glad it helped. Please accept the answer so it can help others as well.

    – Nawed Khan
    Mar 7 at 22:40











  • How do I do that? I voted it up, but how do I accept?

    – Marcus
    Mar 7 at 23:01











  • there should be a green checkmark next to the question.

    – Nawed Khan
    Mar 7 at 23:23















1














The html string is malformed. change this



output += '<button onClick="g('+ val.name +')" >Help Me Here</button>'; 


to this



output += '<button onclick="g(''+ val.name +'')" >Help Me Here</button>';





share|improve this answer























  • Well, do you know who is a monkey's Uncle? LMBO...this guy right here! Thanks! Don't know how I continued to overlook this for 3 days now!

    – Marcus
    Mar 7 at 22:23











  • I'm glad it helped. Please accept the answer so it can help others as well.

    – Nawed Khan
    Mar 7 at 22:40











  • How do I do that? I voted it up, but how do I accept?

    – Marcus
    Mar 7 at 23:01











  • there should be a green checkmark next to the question.

    – Nawed Khan
    Mar 7 at 23:23













1












1








1







The html string is malformed. change this



output += '<button onClick="g('+ val.name +')" >Help Me Here</button>'; 


to this



output += '<button onclick="g(''+ val.name +'')" >Help Me Here</button>';





share|improve this answer













The html string is malformed. change this



output += '<button onClick="g('+ val.name +')" >Help Me Here</button>'; 


to this



output += '<button onclick="g(''+ val.name +'')" >Help Me Here</button>';






share|improve this answer












share|improve this answer



share|improve this answer










answered Mar 7 at 22:15









Nawed KhanNawed Khan

2,9911618




2,9911618












  • Well, do you know who is a monkey's Uncle? LMBO...this guy right here! Thanks! Don't know how I continued to overlook this for 3 days now!

    – Marcus
    Mar 7 at 22:23











  • I'm glad it helped. Please accept the answer so it can help others as well.

    – Nawed Khan
    Mar 7 at 22:40











  • How do I do that? I voted it up, but how do I accept?

    – Marcus
    Mar 7 at 23:01











  • there should be a green checkmark next to the question.

    – Nawed Khan
    Mar 7 at 23:23

















  • Well, do you know who is a monkey's Uncle? LMBO...this guy right here! Thanks! Don't know how I continued to overlook this for 3 days now!

    – Marcus
    Mar 7 at 22:23











  • I'm glad it helped. Please accept the answer so it can help others as well.

    – Nawed Khan
    Mar 7 at 22:40











  • How do I do that? I voted it up, but how do I accept?

    – Marcus
    Mar 7 at 23:01











  • there should be a green checkmark next to the question.

    – Nawed Khan
    Mar 7 at 23:23
















Well, do you know who is a monkey's Uncle? LMBO...this guy right here! Thanks! Don't know how I continued to overlook this for 3 days now!

– Marcus
Mar 7 at 22:23





Well, do you know who is a monkey's Uncle? LMBO...this guy right here! Thanks! Don't know how I continued to overlook this for 3 days now!

– Marcus
Mar 7 at 22:23













I'm glad it helped. Please accept the answer so it can help others as well.

– Nawed Khan
Mar 7 at 22:40





I'm glad it helped. Please accept the answer so it can help others as well.

– Nawed Khan
Mar 7 at 22:40













How do I do that? I voted it up, but how do I accept?

– Marcus
Mar 7 at 23:01





How do I do that? I voted it up, but how do I accept?

– Marcus
Mar 7 at 23:01













there should be a green checkmark next to the question.

– Nawed Khan
Mar 7 at 23:23





there should be a green checkmark next to the question.

– Nawed Khan
Mar 7 at 23:23



















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%2f55053571%2fhow-do-i-pass-the-value-of-my-onclick-event-to-my-second-function%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

Thal And Out Agency railway station See also References External links Navigation menuOfficial Web Site of Pakistan RailwaysArchivedOfficial Web Site of Pakistan Railwayseeexpanding ite

Understanding generators in Python2019 Community Moderator ElectionGenerator function not working pythonFor loop not executing two timesGenerators - Printing generated valuesWhy can a python generator only be used once?What exactly do generators do?What does the “yield” keyword do?What does “list comprehension” mean? How does it work and how can I use it?sklearn Kfold acces single fold instead of for loopIs a generator the callable? Which is the generator?Apply Border To Range Of Cells Using OpenpyxlCalling an external command in PythonWhat are metaclasses in Python?What is the difference between @staticmethod and @classmethod?Finding the index of an item given a list containing it in PythonDifference between append vs. extend list methods in PythonHow can I safely create a nested directory in Python?Does Python have a ternary conditional operator?Understanding slice notationUnderstanding Python super() with __init__() methodsDoes Python have a string 'contains' substring method?

How can I change the color of pagination dots of UIPageControl?How to change UIPageControl dotsIs there a way to change page indicator dots colorCustomize dot with image of UIPageControl at index 0 of UIPageControlNo visible @interface for 'NSObject<PageControlDelegate>' declares the selector 'pageControlPageDidChange:'How to change the color of pagination dots in UIPageControl with a different color per pagepagecontrol indicator custom image instead of DefaultChanging the colour of UIPageControl dots in MonoTouchpagecontrol selectable page visibility color?Alternative way to load ViewControllers on a UIPageControlHow to set only layer.border-color for UIpage control dots in swiftHow can I develop for iPhone using a Windows development machine?How to change the name of an iOS app?UITableView - change section header coloruipagecontrol indicator(dot)issueCustom UIPageControl dots color not changingchange the interspace between UIPageControl dotsHow to change Status Bar text color in iOSHow can I change image tintColor in iOS and WatchKitUIPageControl dots with larger space in between each dotsHow to change the color of pagination dots in UIPageControl with a different color per page