I can't print in the body with "document.write()
" or "innerHTML
" when I'm using a variable (With out the variable works). Any idea how to do it?
Hello Medios,
If I understand correctly, you’re wanting to create a user macro within Confluence that has javascript within it that returns variable values as content or body of the macro itself when its placed within a Confluence page.
To understand a bit more on what you’re attempting to do exactly, could you please share the user macro you have so far that's not returning the variable? This would allow us to examine and test the macro to see if this is possible and where the issue may be.
We look forward to your response so we may help to find a solution for you.
Regards,
Stephen Sifers
Not Medios, but I have the same problem. Doing something like this:
var icebreaker = [
"Do you love working from home or would you rather be in the office? Is there a balance of both that you like best?",
"What’s the hardest part about working virtually for you? The easiest?",
"Where do you work most frequently from at home? Your office? Your kitchen table? The backyard? Your bed?",
]
var random = Math.floor(Math.random() * icebreaker.length);
I tried console.log and document.write, as well as the innerHTML trick from Matt Walsh above. I cannot get the variable (which would be icebreaker[random])
edit: With innerHTML in place, I also tried
<p id="pageIdDisplayer"></p>
When the code works, nothing displays and the page is blank.
edit2: I also tried this macro code
{html:script=^icebreak.html} {html}
As noted here: https://bobswift.atlassian.net/wiki/spaces/HTML/pages/6422530/Html-bobswift+macro
Which only shows the macro code without any formatting, whether or not there is an attached html file.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I did this by adding an empty div and building the innerHTML in script:
...
//Update Page Id Displayer
document.getElementById("pageIdDisplayer").innerHTML = displayStr;
});
</script>
<div style="text-align:right; font-size:x-small;" id=pageIdDisplayer></div>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.