{html} <html> <head> <title>hello</title> </head> <body> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script> <script type="text/javascript"> $ (document).ready(function() { $.get("hello.txt", function(msg) { var textArray = msg.split("\n"); var zufall = Math.round ( ( textArray.length - 1 ) * ( Math.random() ) ); $('body').append('<p>' + textArray[zufall] + '</p>'); }); }); </script> </body> </html> {html}
this piece of code is a random generator!
if I use it on a normal html-page, it works fine, but is it possible to use it on a confluence page within the html-macro?
"hello.txt" is an attached file.
I found a different solution for it:
I've got a page, that looks like this:
{html} <script type="text/javascript"> var text = new Array( "hier steht dein erster text.", "text no. 2", "text no. 3", "usw." ); var zufall = Math.round ( ( text.length - 1 ) * ( Math.random() ) ); document.write('<p>' + text[zufall] + '</p>'); </script> {html}
and now I'm using this page via the include-macro.
The intension was, to avoid having the array on the same page, because it will get extremly large!
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.