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;
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
add a comment |
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
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 sendide
when I called the fucntionfindweek()
, you see !, obviously I've that , that's why I've send them as an argument.
– Nprogrammer
Mar 25 at 5:36
add a comment |
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
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
javascript php ajax
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 sendide
when I called the fucntionfindweek()
, you see !, obviously I've that , that's why I've send them as an argument.
– Nprogrammer
Mar 25 at 5:36
add a comment |
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 sendide
when I called the fucntionfindweek()
, 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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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 fucntionfindweek()
, you see !, obviously I've that , that's why I've send them as an argument.– Nprogrammer
Mar 25 at 5:36