load buttons via ajax and then after clicking loaded buttons,load further contents for the relevant buttonTrigger a button click with JavaScript on the Enter key in a text boxHow to manage a redirect request after a jQuery Ajax callHow can I know which radio button is selected via jQuery?JavaScript that executes after page loadjQuery: Return data after ajax call successHTML entities not recognized and not displayed when retrieved from ajaxWhy getElementsByClassName doesn't work on xhr reponseXMLHow to Increasing/Decreasing PHP variable value and reload function via ajaxajax request gives a 404 with express server (chrome) loads successfully with firefox without a server?File upload to pre-signed url of S3 in React Native - Header is getting appended

Can I make plugins required?

English word for "product of tinkering"

Is using haveibeenpwned to validate password strength rational?

Do simulator games use a realistic trajectory to get into orbit?

Thread Pool C++ Implementation

A planet of ice and fire

Character descriptions

What's up with this leaf?

Should an arbiter claim draw at a K+R vs K+R endgame?

Is it a problem if <h4>, <h5> and <h6> are smaller than regular text?

How to deal with apathetic co-worker?

Recommended tools for graphs and charts

Does an ice chest packed full of frozen food need ice?

Arriving at the same result with the opposite hypotheses

Difference between > and >> when used with a named pipe

Cycle through MeshStyle directives in ListLinePlot

Project Euler #7 10001st prime in C++

How can I get an unreasonable manager to approve time off?

Second (easy access) account in case my bank screws up

What ways have you found to get edits from non-LaTeX users?

Why is one of Madera Municipal's runways labelled with only "R" on both sides?

This riddle is not to see but to solve

Would the US government be able to hold control if all electronics were disabled for an indefinite amount of time?

Frame failure sudden death?



load buttons via ajax and then after clicking loaded buttons,load further contents for the relevant button


Trigger a button click with JavaScript on the Enter key in a text boxHow to manage a redirect request after a jQuery Ajax callHow can I know which radio button is selected via jQuery?JavaScript that executes after page loadjQuery: Return data after ajax call successHTML entities not recognized and not displayed when retrieved from ajaxWhy getElementsByClassName doesn't work on xhr reponseXMLHow to Increasing/Decreasing PHP variable value and reload function via ajaxajax request gives a 404 with express server (chrome) loads successfully with firefox without a server?File upload to pre-signed url of S3 in React Native - Header is getting appended






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








0















I want to load some content in form of buttons via ajax and then after clicking those loaded buttons I want to be able to load further contents for each button relevantly.



is this possible ?



Here is what I have till now !



Calling Function by onclick.



<button onclick="findWeek(<?php echo $row['week']; ?>)"></button>


This will be the div which will have the loaded content:



 <div id="stats">

</div>


Function



 function findWeek(ide) 


var xhr = new XMLHttpRequest();



xhr.open("GET" ,"start.php?ide="+ide,true);

xhr.send(null);


xhr.onreadystatechange = function()
if( (xhr.readyState == '4') && ( xhr.status == '200') )


document.getElementById("stats").innerHTML = xhr.responseText;



;




The loaded content is from the file start.php.



Here is the code of start.php, this will be loaded and then will be feed to the div with id #stats.



When these buttons are loaded I want to be able to click on these buttons and load further contents that is related with each button.



start.php



if($run = mysqli_query($connect,"SELECT `day` from `foodd_schedule` WHERE `week` = '$week' group by day")){
while($row = mysqli_fetch_assoc($run)){

?>

<button class="btn btn-danger" onclick="findday()"><?php echo $row['day']; ?></button>


findday Function inside start.php file.



<script type="text/javascript">

function findday()
alert("I'm called");





The findday() function is not even called and the console shows the error of findday() is not defined.



How to solve this problem.
Thanks.










share|improve this question






















  • start.php how do you get ide value? Also, for complex operations, try to test each function before adding more?

    – Marios Nikolaou
    Mar 24 at 21:55












  • I've send ide when I called the fucntion findweek(), you see !, obviously I've that , that's why I've send them as an argument.

    – Nprogrammer
    Mar 25 at 5:36

















0















I want to load some content in form of buttons via ajax and then after clicking those loaded buttons I want to be able to load further contents for each button relevantly.



is this possible ?



Here is what I have till now !



Calling Function by onclick.



<button onclick="findWeek(<?php echo $row['week']; ?>)"></button>


This will be the div which will have the loaded content:



 <div id="stats">

</div>


Function



 function findWeek(ide) 


var xhr = new XMLHttpRequest();



xhr.open("GET" ,"start.php?ide="+ide,true);

xhr.send(null);


xhr.onreadystatechange = function()
if( (xhr.readyState == '4') && ( xhr.status == '200') )


document.getElementById("stats").innerHTML = xhr.responseText;



;




The loaded content is from the file start.php.



Here is the code of start.php, this will be loaded and then will be feed to the div with id #stats.



When these buttons are loaded I want to be able to click on these buttons and load further contents that is related with each button.



start.php



if($run = mysqli_query($connect,"SELECT `day` from `foodd_schedule` WHERE `week` = '$week' group by day")){
while($row = mysqli_fetch_assoc($run)){

?>

<button class="btn btn-danger" onclick="findday()"><?php echo $row['day']; ?></button>


findday Function inside start.php file.



<script type="text/javascript">

function findday()
alert("I'm called");





The findday() function is not even called and the console shows the error of findday() is not defined.



How to solve this problem.
Thanks.










share|improve this question






















  • start.php how do you get ide value? Also, for complex operations, try to test each function before adding more?

    – Marios Nikolaou
    Mar 24 at 21:55












  • I've send ide when I called the fucntion findweek(), you see !, obviously I've that , that's why I've send them as an argument.

    – Nprogrammer
    Mar 25 at 5:36













0












0








0








I want to load some content in form of buttons via ajax and then after clicking those loaded buttons I want to be able to load further contents for each button relevantly.



is this possible ?



Here is what I have till now !



Calling Function by onclick.



<button onclick="findWeek(<?php echo $row['week']; ?>)"></button>


This will be the div which will have the loaded content:



 <div id="stats">

</div>


Function



 function findWeek(ide) 


var xhr = new XMLHttpRequest();



xhr.open("GET" ,"start.php?ide="+ide,true);

xhr.send(null);


xhr.onreadystatechange = function()
if( (xhr.readyState == '4') && ( xhr.status == '200') )


document.getElementById("stats").innerHTML = xhr.responseText;



;




The loaded content is from the file start.php.



Here is the code of start.php, this will be loaded and then will be feed to the div with id #stats.



When these buttons are loaded I want to be able to click on these buttons and load further contents that is related with each button.



start.php



if($run = mysqli_query($connect,"SELECT `day` from `foodd_schedule` WHERE `week` = '$week' group by day")){
while($row = mysqli_fetch_assoc($run)){

?>

<button class="btn btn-danger" onclick="findday()"><?php echo $row['day']; ?></button>


findday Function inside start.php file.



<script type="text/javascript">

function findday()
alert("I'm called");





The findday() function is not even called and the console shows the error of findday() is not defined.



How to solve this problem.
Thanks.










share|improve this question














I want to load some content in form of buttons via ajax and then after clicking those loaded buttons I want to be able to load further contents for each button relevantly.



is this possible ?



Here is what I have till now !



Calling Function by onclick.



<button onclick="findWeek(<?php echo $row['week']; ?>)"></button>


This will be the div which will have the loaded content:



 <div id="stats">

</div>


Function



 function findWeek(ide) 


var xhr = new XMLHttpRequest();



xhr.open("GET" ,"start.php?ide="+ide,true);

xhr.send(null);


xhr.onreadystatechange = function()
if( (xhr.readyState == '4') && ( xhr.status == '200') )


document.getElementById("stats").innerHTML = xhr.responseText;



;




The loaded content is from the file start.php.



Here is the code of start.php, this will be loaded and then will be feed to the div with id #stats.



When these buttons are loaded I want to be able to click on these buttons and load further contents that is related with each button.



start.php



if($run = mysqli_query($connect,"SELECT `day` from `foodd_schedule` WHERE `week` = '$week' group by day")){
while($row = mysqli_fetch_assoc($run)){

?>

<button class="btn btn-danger" onclick="findday()"><?php echo $row['day']; ?></button>


findday Function inside start.php file.



<script type="text/javascript">

function findday()
alert("I'm called");





The findday() function is not even called and the console shows the error of findday() is not defined.



How to solve this problem.
Thanks.







javascript php ajax






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 24 at 17:20









NprogrammerNprogrammer

84




84












  • start.php how do you get ide value? Also, for complex operations, try to test each function before adding more?

    – Marios Nikolaou
    Mar 24 at 21:55












  • I've send ide when I called the fucntion findweek(), you see !, obviously I've that , that's why I've send them as an argument.

    – Nprogrammer
    Mar 25 at 5:36

















  • start.php how do you get ide value? Also, for complex operations, try to test each function before adding more?

    – Marios Nikolaou
    Mar 24 at 21:55












  • I've send ide when I called the fucntion findweek(), you see !, obviously I've that , that's why I've send them as an argument.

    – Nprogrammer
    Mar 25 at 5:36
















start.php how do you get ide value? Also, for complex operations, try to test each function before adding more?

– Marios Nikolaou
Mar 24 at 21:55






start.php how do you get ide value? Also, for complex operations, try to test each function before adding more?

– Marios Nikolaou
Mar 24 at 21:55














I've send ide when I called the fucntion findweek(), you see !, obviously I've that , that's why I've send them as an argument.

– Nprogrammer
Mar 25 at 5:36





I've send ide when I called the fucntion findweek(), you see !, obviously I've that , that's why I've send them as an argument.

– Nprogrammer
Mar 25 at 5:36












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%2f55326435%2fload-buttons-via-ajax-and-then-after-clicking-loaded-buttons-load-further-conten%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%2f55326435%2fload-buttons-via-ajax-and-then-after-clicking-loaded-buttons-load-further-conten%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