/    Sign up×
Community /Pin to ProfileBookmark

Add a select into js file

I found this script:

[url]http://javascript.html.it/demo/javascript/4537/esempio.htm[/url]
[url]http://javascript.html.it/script/vedi/4537/fusi-orari/[/url]
(clic on “Scarica il file”)

I like it very much but I would like to add a new tag select like this:

[CODE]<select name=”continet”>
<option value=”-1″>– Select Continent –</option>
<option value=”0″>Africa</option>
<option value=”1″>The Americas</option>
<option value=”2″>Asia</option>
<option value=”3″>Australia</option>
<option value=”4″>Europa</option>
</select>[/CODE]

because I would like a script very little.

I tried many time to add code but it doesn’t work… ?

Thanks for your help

to post a comment
JavaScript

15 Comments(s)

Copy linkTweet thisAlerts:
@JMRKERJan 14.2010 — Can you isolate the problem to a smaller script?

Perhaps you can post the code that you tried so we can see what you have done.

I'm having trouble with the language (American with no additional language skills :o)

and the area you requested to click is not a link, so it does nothing.
Copy linkTweet thisAlerts:
@harrierdhJan 14.2010 — Did you want to add the select via javascript after some event like a button click? Or are you just adding this HTML to your web page and it doesn't work? Or are you trying to add a select box to someone else's page. Or are you trying to add a select box to a blog?
Copy linkTweet thisAlerts:
@esacerbareauthorJan 17.2010 — Can you isolate the problem to a smaller script?

Perhaps you can post the code that you tried so we can see what you have done.

I'm having trouble with the language (American with no additional language skills :o)

and the area you requested to click is not a link, so it does nothing.[/QUOTE]


Ok, thanks but if you don't download the script you can not understand my questions. I can go to links that it was written in the first message very well (01-14-2010 04:25 PM) so I don't know because you can not do it. You should go to link under:

http://javascript.html.it/script/vedi/4537/fusi-orari/

and to clic on "Scarica il file". The script is in English and very easy for you. If you have still some problem I can send you an e-mail or if you prefer to do an upload on some specific website.
Copy linkTweet thisAlerts:
@esacerbareauthorJan 17.2010 — Did you want to add the select via javascript after some event like a button click? Or are you just adding this HTML to your web page and it doesn't work? Or are you trying to add a select box to someone else's page. Or are you trying to add a select box to a blog?[/QUOTE]

Did you want to add the select via javascript after some event like a button click? No, I don't. My question it is more easy!

Or are you just adding this HTML to your web page and it doesn't work? Yes, it is!

Or are you trying to add a select box to someone else's page? No, I don't but I would like to do at the select a function.

Or are you trying to add a select box to a blog? No I don't.

I would like to be more clear so I post my codes. I would like to do a script where I can choose the right continent and to have a GUI smaller than the previous.

http://javascript.html.it/demo/javascript/4537/esempio.htm

MY CODE:

Into theData.js
[CODE] var Continenti = new Array();
Continenti[0] = "Asia";
Continenti[1] = "Africa";
Continenti[2] = "North America";
Continenti[3] = "South America";
Continenti[4] = "Antarctica";
Continenti[5] = "Europe";
Continenti[6] = "Australia";[/CODE]


Into timeFunction.js
[CODE]function seleziona_array() {
var var_continente = theForm.continenti_mondo.options[theForm.continenti_mondo.selectedIndex].value;
if (var_continente == 1) {cityArray=Asia_Cities_List;}
else if (var_continente == 2) {cityArray=Africa_Cities_List;}
else if (var_continente == 3) {cityArray=North_America_Cities_List;}
else if (var_continente == 4) {cityArray=South_America_Cities_List;}
else if (var_continente == 5) {cityArray=Antarctica_Cities_List;}
else if (var_continente == 6) {cityArray=Europe_Cities_List;}
else if (var_continente == 7) {cityArray=Australia_Cities_List;}
return cityArray
}[/CODE]


Into html file
[CODE]<div class="s_c">
<script type="text/javascript"><!--
document.write("<select class="theSelect" id="continenti" name="continenti_mondo" gestisci_select(this[this.selectedIndex].value)>");
document.write("<option value="0" selected="selected">&lt; Continent &gt;</option>");
aggiungi_continente()
document.write("</select>");
//--></script>
</div>
<div class="s_c">
<script type="text/javascript"><!--
document.write("<select onchange="citySelect(this, cityArray, 9);" class="theSelect">");
document.write("<option value="&lt; Choose City &gt;" selected="selected">&lt; Choose City &gt;</option>");
//--></script>
<script type="text/javascript"><!--
writeItAll(cityArray)
//--></script>
<script type="text/javascript"><!--
document.write("</select>");
//--></script>
</div>[/CODE]


Can you understand me? My English is not very good so I think that it is harder to understand my words than my javascript problem.

[B]Thanks for your help and your effort.[/B]
Copy linkTweet thisAlerts:
@esacerbareauthorJan 17.2010 — I tried this solution too but it doesn't work:

[CODE]function citySelect(drop, cityArray, id) {
var var_continente = theForm.continenti_mondo.options[theForm.continenti_mondo.selectedIndex].value;
if (var_continente == 1) {cityArray=Asia_Cities_List;}
else if (var_continente == 2) {cityArray=Africa_Cities_List;}
else if (var_continente == 3) {cityArray=North_America_Cities_List;}
else if (var_continente == 4) {cityArray=South_America_Cities_List;}
else if (var_continente == 5) {cityArray=Antarctica_Cities_List;}
else if (var_continente == 6) {cityArray=Europe_Cities_List;}
else if (var_continente == 7) {cityArray=Australia_Cities_List;}

var city = drop.options[drop.selectedIndex].value;

if (city != "&lt; Choose City &gt;") {
for (var i=0; i < cityArray.length; i++) {
if (city == cityArray[i].cityAcronym) {
document.theForm.elements[id].value = displayDate(cityArray[i]);
if (document.all) {
window.sstchur.web.js.xb.setTimeout(citySelect, 1, drop, cityArray, id);
}
else { window.setTimeout(citySelect, 1, drop, cityArray, id); }
}
}
}
else {document.theForm.elements[id].value = "00:00:00";}
}[/CODE]
Copy linkTweet thisAlerts:
@esacerbareauthorJan 17.2010 — I tried to write this piece of code but it doesn't work too:

[CODE]function seleziona_array() {
indice_selezionato = document.getElementById('continenti').selectedIndex;
value_selezionato = document.getElementById('continenti').options[indice_selezionato].value;
if (value_selezionato == 1) {cityArray=Asia_Cities_List;}
else if (value_selezionato == 2) {cityArray=Africa_Cities_List;}
else if (value_selezionato == 3) {cityArray=North_America_Cities_List;}
else if (value_selezionato == 4) {cityArray=South_America_Cities_List;}
else if (value_selezionato == 5) {cityArray=Antarctica_Cities_List;}
else if (value_selezionato == 6) {cityArray=Europe_Cities_List;}
else if (value_selezionato == 7) {cityArray=Australia_Cities_List;}
}[/CODE]
Copy linkTweet thisAlerts:
@esacerbareauthorJan 17.2010 — [CODE]<div class="s_c">
<script type="text/javascript"><!--
document.write("<select class="theSelect" id="continenti" name="continenti_mondo" onchange="seleziona_array(this.selectedIndex)">");
document.write("<option value="0" selected="selected">&lt; Continent &gt;</option>");
aggiungi_continente()
document.write("</select>");
//--></script>
</div>
<div class="s_c">
<script type="text/javascript"><!--
document.write("<select onchange="citySelect(this, cityArray, 9);" class="theSelect">");
document.write("<option value="&lt; Choose City &gt;" selected="selected">&lt; Choose City &gt;</option>");
//--></script>
<script type="text/javascript"><!--
writeItAll(cityArray)
//--></script>
<script type="text/javascript"><!--
document.write("</select>");
//--></script>
</div>[/CODE]


[CODE]function seleziona_array(indice_selezionato) {
if (indice_selezionato == 1) {cityArray=Asia_Cities_List;}
else if (indice_selezionato == 2) {cityArray=Africa_Cities_List;}
else if (indice_selezionato == 3) {cityArray=North_America_Cities_List;}
else if (indice_selezionato == 4) {cityArray=South_America_Cities_List;}
else if (indice_selezionato == 5) {cityArray=Antarctica_Cities_List;}
else if (indice_selezionato == 6) {cityArray=Europe_Cities_List;}
else if (indice_selezionato == 7) {cityArray=Australia_Cities_List;}
}

function citySelect(drop, cityArray, id) {
var city = drop.options[drop.selectedIndex].value;

if (city != "&lt; Choose City &gt;") {
for (var i=0; i < cityArray.length; i++) {
if (city == cityArray[i].cityAcronym) {
document.theForm.elements[id].value = displayDate(cityArray[i]);
if (document.all) {
window.sstchur.web.js.xb.setTimeout(citySelect, 1, drop, cityArray, id);
}
else { window.setTimeout(citySelect, 1, drop, cityArray, id); }
}
}
}
else {document.theForm.elements[id].value = "00:00:00";}
}[/CODE]


[CODE] var Continenti = new Array();
Continenti[0] = "Asia";
Continenti[1] = "Africa";
Continenti[2] = "North America";
Continenti[3] = "South America";
Continenti[4] = "Antarctica";
Continenti[5] = "Europe";
Continenti[6] = "Australia";[/CODE]


It doesn't work too... ?
Copy linkTweet thisAlerts:
@esacerbareauthorJan 17.2010 — The problem is:

'cityArray' is not defined (from IE test...)... I don't understand... ?
Copy linkTweet thisAlerts:
@esacerbareauthorJan 20.2010 — I tried with a second file to study the problem and I found an half solution. If you choose "Vacanza 1", but with Firefox only, you can write 1 but javascript delete the select tag! ? I tried to add the name of an other tag after "document." but it stops to work! ?

[CODE]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Documento senza titolo</title>
</head>
<body>
<form name="esempio" action="">
<select name="pippo" id="selezione" onchange="if (this.options[1].selected) {document.write(this.selectedIndex);};">
<option value="-1">-- Select Element --</option>
<option value="0">Vacanza 1</option>
<option value="1">Vacanza 2</option>
<option value="2">Vacanza 3</option>
<option value="3">Vacanza 4</option>
<option value="4">Vacanza 5</option>
</select>
<div name="sonotriste">
</div>
</form>
</body>
</html>[/CODE]
Copy linkTweet thisAlerts:
@esacerbareauthorJan 27.2010 — it is too hard for me... ?

I am not good enought for this problem... I have olready too many files into my hard disk... ?

I need for an help!!! ?
Copy linkTweet thisAlerts:
@JMRKERJan 27.2010 — it is too hard for me... ?

I am not good enought for this problem... I have olready too many files into my hard disk... ?

I need for an help!!! ?[/QUOTE]


In your last code posted:
<i>
</i>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
&lt;title&gt;Documento senza titolo&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;form name="esempio" action=""&gt;
&lt;select name="pippo" id="selezione"
onchange="if (this.options[1].selected) {document.write(this.selectedIndex);};"&gt;
&lt;option value="-1"&gt;-- Select Element --&lt;/option&gt;
&lt;option value="0"&gt;Vacanza 1&lt;/option&gt;
&lt;option value="1"&gt;Vacanza 2&lt;/option&gt;
&lt;option value="2"&gt;Vacanza 3&lt;/option&gt;
&lt;option value="3"&gt;Vacanza 4&lt;/option&gt;
&lt;option value="4"&gt;Vacanza 5&lt;/option&gt;
&lt;/select&gt;
&lt;div name="sonotriste"&gt;
&lt;/div&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;

You cannot use 'document.write' anything after the page has been created. Doing so, re-writes the page and changes all before.

?

I am still unclear as to what you want to do. But to fix the last posted code with an 'alert' message, do this:
<i>
</i>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&gt;
&lt;title&gt;Documento senza titolo&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;form name="esempio" action=""&gt;

&lt;select name="pippo" id="selezione"
onchange="var str='index '+this.selectedIndex+'nhas a value of '+this.options[this.selectedIndex].value+'nand a text of '+this.options[this.selectedIndex].text;alert(str);document.getElementById('sonotriste').innerHTML=str"&gt;
&lt;!-- NOTE: all of onchange code could be moved to a function --&gt;

&lt;option value="-1"&gt;-- Select Element --&lt;/option&gt;
&lt;option value="0"&gt;Vacanza 1&lt;/option&gt;
&lt;option value="1"&gt;Vacanza 2&lt;/option&gt;
&lt;option value="2"&gt;Vacanza 3&lt;/option&gt;
&lt;option value="3"&gt;Vacanza 4&lt;/option&gt;
&lt;option value="4"&gt;Vacanza 5&lt;/option&gt;
&lt;/select&gt;
&lt;div name="sonotriste" id="sonotriste"&gt;
&lt;/div&gt;
&lt;/form&gt;
&lt;/body&gt;
&lt;/html&gt;

To go forward from here, what do you want to do with the 'selectedIndex' chosen?
Copy linkTweet thisAlerts:
@esacerbareauthorJan 30.2010 — The problem is very simple to understand but the solution it isn&#8217;t. I try to rewrite the question. I have in my home page this code:
[CODE]<select name="continet">
<option value="-1">-- Select Continent --</option>
<option value="0">Africa</option>
<option value="1">The Americas</option>
<option value="2">Asia</option>
<option value="3">Australia</option>
<option value="4">Europa</option>
</select>[/CODE]

When the visitor selects the option &#8220;Africa&#8221; (<option value="0">Africa</option>) I would like to write under this select tag a div tag like this:
[CODE]<div class="class1">
<script type="text/javascript"><!--
document.write("<select onchange="citySelect(this, Africa_Cities_List, 7);" class="theSelect">");
document.write("<option value="&lt; Choose City &gt;" selected="selected">&lt; Choose City &gt;</option>");
writeItAll(Africa_Cities_List);
document.write("</select>");
//--></script>
</div>[/CODE]

While when the visitor selects the option &#8220;The Americas&#8221; this div:
[CODE]<div class="class1">
<script type="text/javascript"><!--
document.write("<select onchange="citySelect(this, America_Cities_List, 7);" class="theSelect">");
document.write("<option value="&lt; Choose City &gt;" selected="selected">&lt; Choose City &gt;</option>");
writeItAll(America_Cities_List);
document.write("</select>");
//--></script>
</div>[/CODE]

With &#8220;Asia&#8221; this tag:
[CODE]<div class="class1">
<script type="text/javascript"><!--
document.write("<select onchange="citySelect(this, Asia_Cities_List, 7);" class="theSelect">");
document.write("<option value="&lt; Choose City &gt;" selected="selected">&lt; Choose City &gt;</option>");
writeItAll(Asia_Cities_List);
document.write("</select>");
//--></script>
</div>[/CODE]

With &#8220;Australia&#8221; this tag:
[CODE]<div class="class1">
<script type="text/javascript"><!--
document.write("<select onchange="citySelect(this, Australia _Cities_List, 7);" class="theSelect">");
document.write("<option value="&lt; Choose City &gt;" selected="selected">&lt; Choose City &gt;</option>");
writeItAll(Australia _Cities_List);
document.write("</select>");
//--></script>
</div>[/CODE]

And with &#8220;Europa&#8221; this other tag:
[CODE]<div class="class1">
<script type="text/javascript"><!--
document.write("<select onchange="citySelect(this, Europa _Cities_List, 7);" class="theSelect">");
document.write("<option value="&lt; Choose City &gt;" selected="selected">&lt; Choose City &gt;</option>");
writeItAll(Europa _Cities_List);
document.write("</select>");
//--></script>
</div>[/CODE]


Can you understand my horrible English??

[B]Thank you very much for your help[/B]
Copy linkTweet thisAlerts:
@JMRKERJan 31.2010 — Not the most efficient way to do it, but it matches close to your original script ... ?
<i>
</i>&lt;html&gt;
&lt;head&gt;
&lt;title&gt;Continent Selections&lt;/title&gt;
&lt;script type="text/javascript"&gt;
// From: http://www.webdeveloper.com/forum/showthread.php?p=1064452#post1064452

var Africa_Cities_List = [
'Johannesburg',
'Cape Town',
'Cairo',
'Tripoli' // NOTE: no comma after last entry
];

var America_Cities_List = [
'New York',
'Miami',
'Los Angeles',
'Washington' // NOTE: no comma after last entry
];

var Asia_Cities_List = [
'Moscow',
'Beijing',
'Tehran',
'Tokyo' // NOTE: no comma after last entry
];

var Australia_Cities_List = [
'Sydney',
'Melbourn',
'Queensland' // NOTE: no comma after last entry
];

var Europa_Cities_List = [
'London',
'Paris',
'Berlin' // NOTE: no comma after last entry
];
function continentSelect(info) {
for (var i=1; i&lt;6; i++) {
document.getElementById('continent'+i).style.display = 'none';
}
if (info.value == '0') { return; }
document.getElementById('continent'+info.selectedIndex).style.display = 'block';
}

function citySelect(info) {
if (info.value == '0') { return; }
alert('Selected city: '+info.value);
}

&lt;/script&gt;

&lt;style type="text/css"&gt;
.class1 { display:none; }
&lt;/style&gt;

&lt;/head&gt;
&lt;body&gt;
&lt;select name="continent" onchange="continentSelect(this)"&gt;
&lt;option value="0" selected&gt;-- Select Continent --&lt;/option&gt;
&lt;option value="1"&gt;Africa&lt;/option&gt;
&lt;option value="2"&gt;The Americas&lt;/option&gt;
&lt;option value="3"&gt;Asia&lt;/option&gt;
&lt;option value="4"&gt;Australia&lt;/option&gt;
&lt;option value="5"&gt;Europa&lt;/option&gt;
&lt;/select&gt;
&lt;p&gt;
&lt;div class="class1" id="continent1"&gt;
&lt;script type="text/javascript"&gt;
var str = '&lt;select onchange="citySelect(this)" class="theSelect"&gt;';
str +='&lt;option value="0" selected="selected"&gt;&amp;lt; Choose African City &amp;gt;&lt;/option&gt;';
for (var i=0; i&lt;Africa_Cities_List.length; i++) {
str += '&lt;option value="'+Africa_Cities_List[i]+'"&gt;'+Africa_Cities_List[i]+'&lt;/option&gt;';
}
str +="&lt;/select&gt;";
document.write(str);
&lt;/script&gt;
&lt;/div&gt;
&lt;p&gt;
&lt;div class="class1" id="continent2"&gt;
&lt;script type="text/javascript"&gt;
var str = '&lt;select onchange="citySelect(this)" class="theSelect"&gt;';
str +='&lt;option value="0" selected="selected"&gt;&amp;lt; Choose American City &amp;gt;&lt;/option&gt;';
for (var i=0; i&lt;America_Cities_List.length; i++) {
str += '&lt;option value="'+America_Cities_List[i]+'"&gt;'+America_Cities_List[i]+'&lt;/option&gt;';
}
str +="&lt;/select&gt;";
document.write(str);
&lt;/script&gt;
&lt;/div&gt;
&lt;p&gt;
&lt;div class="class1" id="continent3"&gt;
&lt;script type="text/javascript"&gt;
var str = '&lt;select onchange="citySelect(this)" class="theSelect"&gt;';
str +='&lt;option value="0" selected="selected"&gt;&amp;lt; Choose Asian City &amp;gt;&lt;/option&gt;';
for (var i=0; i&lt;Asia_Cities_List.length; i++) {
str += '&lt;option value="'+Asia_Cities_List[i]+'"&gt;'+Asia_Cities_List[i]+'&lt;/option&gt;';
}
str +="&lt;/select&gt;";
document.write(str);
&lt;/script&gt;
&lt;/div&gt;
&lt;p&gt;
&lt;div class="class1" id="continent4"&gt;
&lt;script type="text/javascript"&gt;
var str = '&lt;select onchange="citySelect(this)" class="theSelect"&gt;';
str +='&lt;option value="0" selected="selected"&gt;&amp;lt; Choose Austrialian City &amp;gt;&lt;/option&gt;';
for (var i=0; i&lt;Australia_Cities_List.length; i++) {
str += '&lt;option value="'+Australia_Cities_List[i]+'"&gt;'+Australia_Cities_List[i]+'&lt;/option&gt;';
}
str +="&lt;/select&gt;";
document.write(str);
&lt;/script&gt;
&lt;/div&gt;
&lt;p&gt;
&lt;div class="class1" id="continent5"&gt;
&lt;script type="text/javascript"&gt;
var str = '&lt;select onchange="citySelect(this)" class="theSelect"&gt;';
str +='&lt;option value="0" selected="selected"&gt;&amp;lt; Choose European City &amp;gt;&lt;/option&gt;';
for (var i=0; i&lt;Europa_Cities_List.length; i++) {
str += '&lt;option value="'+Europa_Cities_List[i]+'"&gt;'+Europa_Cities_List[i]+'&lt;/option&gt;';
}
str +="&lt;/select&gt;";
document.write(str);
&lt;/script&gt;
&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;

Good Luck!

?
Copy linkTweet thisAlerts:
@esacerbareauthorFeb 01.2010 — Thanks very much!!! Wawww!!! I like you very much! Thanks! You are not a man! You are a genius!!!

Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks! Thanks!

Are they sufficient?

No, they aren&#8217;t!

Thanks too!
Copy linkTweet thisAlerts:
@JMRKERFeb 01.2010 — You're most welcome.

Happy to help.

Good Luck!

?
×

Success!

Help @esacerbare spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.19,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...