leertaste Posted September 19, 2013 Group: Members Topic Count: 41 Topics Per Day: 0.01 Content Count: 137 Reputation: 1 Joined: 02/02/13 Last Seen: July 18, 2019 Share Posted September 19, 2013 (edited) Hello Community, I want to ask you, how to create a box like this on my homepage: you can see that the homepage doens't have to reload to show the information inside that "box".can someone tell/help me? Edited September 19, 2013 by leertaste Link to comment Share on other sites More sharing options...
Vincent Posted September 20, 2013 Group: Members Topic Count: 130 Topics Per Day: 0.03 Content Count: 528 Reputation: 18 Joined: 09/11/12 Last Seen: March 5, 2020 Share Posted September 20, 2013 Sounds like Java. There is also a way in PHP but this is not as goog as Java. Link to comment Share on other sites More sharing options...
Asura Posted September 20, 2013 Group: Members Topic Count: 3 Topics Per Day: 0.00 Content Count: 707 Reputation: 168 Joined: 01/26/12 Last Seen: February 7, 2014 Share Posted September 20, 2013 Hi leertaste, I'm not sure what Thor v2 is talking about. This can be accomplished with frames and links with the target specified as the label of the frames. Basic HTML. <a target="frame_name" href="information.html">Link</a> http://www.w3schools.com/html/html_iframe.asp http://www.w3schools.com/html/tryit.asp?filename=tryhtml_iframe_target Link to comment Share on other sites More sharing options...
leertaste Posted September 20, 2013 Group: Members Topic Count: 41 Topics Per Day: 0.01 Content Count: 137 Reputation: 1 Joined: 02/02/13 Last Seen: July 18, 2019 Author Share Posted September 20, 2013 Ty Asura Link to comment Share on other sites More sharing options...
Sunzuke Posted September 20, 2013 Group: Members Topic Count: 17 Topics Per Day: 0.00 Content Count: 76 Reputation: 3 Joined: 02/24/12 Last Seen: October 19, 2013 Share Posted September 20, 2013 (edited) <script> function reload(target, site) { var ajaxRequest; try { ajaxRequest = new XMLHttpRequest(); } catch (e) { try { ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("Your browser broke!"); return false; } } } ajaxRequest.onreadystatechange = function() { if(ajaxRequest.readyState == 4) { var ajaxDisplay = document.getElementById(""+target+""); ajaxDisplay.innerHTML = ajaxRequest.responseText; } } ajaxRequest.open("GET", "/"+site+"/", true); ajaxRequest.send(null); } </script> Edited September 20, 2013 by Sunzuke Link to comment Share on other sites More sharing options...
Vincent Posted September 22, 2013 Group: Members Topic Count: 130 Topics Per Day: 0.03 Content Count: 528 Reputation: 18 Joined: 09/11/12 Last Seen: March 5, 2020 Share Posted September 22, 2013 Hi leertaste, I'm not sure what Thor v2 is talking about. This can be accomplished with frames and links with the target specified as the label of the frames. Basic HTML. <a target="frame_name" href="information.html">Link</a> http://www.w3schools.com/html/html_iframe.asp http://www.w3schools.com/html/tryit.asp?filename=tryhtml_iframe_target Using frames is outdated. To do it the "good" way you have to use Java that can load dynamic stuff without siterefresh. The problem at PHP is that the code is execute serverside. Java not. You can take a look at Sunzukehe make it right Oh du bist der Beste Irgendwas habe ich aber 100%ig falsch gemacht.. Das Ganze schaut bei mir jetzt nämlich so aus: Unbenannt.png Will be helpfull if we can see your comeplete code. Link to comment Share on other sites More sharing options...
leertaste Posted September 22, 2013 Group: Members Topic Count: 41 Topics Per Day: 0.01 Content Count: 137 Reputation: 1 Joined: 02/02/13 Last Seen: July 18, 2019 Author Share Posted September 22, 2013 Sunzuke send me this file:salesch.eu/soeinebox/soeinebox.rarI tried to put this onto my homepage but I am sure I did something wrong.This is what it looks like: Link to comment Share on other sites More sharing options...
krisnx Posted October 13, 2013 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 104 Reputation: 4 Joined: 06/23/12 Last Seen: October 20, 2022 Share Posted October 13, 2013 its use jquery . try to learn some jquery basic Link to comment Share on other sites More sharing options...
Question
leertaste
Hello Community,
I want to ask you, how to create a box like this on my homepage:

Edited by leertasteyou can see that the homepage doens't have to reload to show the information inside that "box".
can someone tell/help me?
Link to comment
Share on other sites
7 answers to this question
Recommended Posts