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

SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현