<center></center> <p>In this post, I'm talking about DOM, the most important and practical topic in JavaScript.</p> <h3>What is DOM?</h3> <p>DOM stands for Document Object Model. Using the DOM you can modify, delete or create HTML document elements!</p> <p>In fact, DOM is one of the World Wide Web Consortium (W3C) standards that defines a standard for document access:</p> <p><blockquote> The W3C Document Object Model (DOM) is a platform and language-neutral interface that allows programs and scripts to dynamically access and update the content, structure, and style of a document.</blockquote></p> <p>This W3C standard is divided into three parts:</p> <ol> <li>Core DOM: Standard model for all types of documents</li> <li>XML DOM: Standard model for XML documents</li> <li>HTML DOM: The standard model for HTML documents</li> </ol> <p>When your web page loads, the browser creates an object-oriented model of the page. In the case of HTML language, this model is made as a tree of different objects. Do not look at the image below:</p> <center></center> <p>Based on this tree, JavaScript can access a variety of HTML elements:</p> <ul> <li>JavaScript can modify all HTML elements on a page</li> <li>JavaScript can change all attributes of HTML elements</li> <li>JavaScript can change all CSS directives on the page</li> <li>JavaScript can remove all attributes and various HTML elements</li> <li>JavaScript can create new HTML elements on the page</li> <li>JavaScript can react to page events and do various things</li> <li>JavaScript can create various events on the page</li> </ul> <p>These are functions of DOM and JavaScript!</p> <h3>Working with the DOM</h3> <p>When I talk about DOM properties, I mean values that can be set (such as changing the content of HTML elements), and when I talk about DOM methods, I mean actions that I can perform (such as removing or adding elements).</p> <p>In the example below, I want to change the content (which is <code>innerHTML</code>) of a <code><p></code> tag that has <code>"id="demo"</code>: </p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <h2>My First Page</h2> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = "Hello World!"; </script> </body> </html></code></pre> <center></center> <p>In the example above, <code>getElementById</code> is a method, but <code>innerHTML</code> is a property; The <code>getElementById</code> method, as the name suggests, receives an HTML element and passes it to JavaScript, then <code>innerHTML</code> displays its content. We can change this content to change the content of the tag as well.</p> <p>There are many ways to access HTML elements, and accessing via <code>id</code> is one of the most common ways, as you saw in the example above. You should also know that <code>innerHTML</code> can access the content of all HTML elements, even <code><html></code> and <code><body></code></p> <h3>document object</h3> <p>The document object represents your web page and is the owner of all other objects in the HTML document. So if you want to access an element in HTML, you have to start with the <code>document</code> object.</p> <p>To find HTML elements:</p> <table> <thead> <tr> <th> Method </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> document.getElementById(<i>id</i>) </td> <td> Find element using id </td> </tr> <tr> <td> document.getElementsByTagName(<i>name</i>) </td> <td> Find element using tag name </td> </tr> <tr> <td> document.getElementsByClassName(<i>name</i>) </td> <td> Find element using class name </td> </tr> </tbody> </table> <p>To modify HTML elements:</p> <table> <thead> <tr> <th> property </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <i>element</i>.innerHTML = <i>new html content</i> </td> <td> Modify the innerHTML (content) of an element </td> </tr> <tr> <td> <i>element</i>.<i>attribute = new value</i> </td> <td> Changing the attribute value of an element </td> </tr> <tr> <td> <i>element</i>.style.<i>property = new style</i> </td> <td> Change the style (CSS) of an element </td> </tr> </tbody> </table> <p></p> <table> <thead> <tr> <th> Method </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> <i>element</i>.setAttribute<i>(attribute, value)</i> </td> <td> Changing the attribute value of an element </td> </tr> </tbody> </table> <p>To add or remove HTML elements:</p> <table> <thead> <tr> <th> Method </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> document.createElement(<i>element</i>) </td> <td> Constructing an HTML element </td> </tr> <tr> <td> document.removeChild(<i>element</i>) </td> <td> Remove an HTML element </td> </tr> <tr> <td> document.appendChild(<i>element</i>) </td> <td> Add an HTML element </td> </tr> <tr> <td> document.replaceChild(<i>new, old</i>) </td> <td> Replace an HTML element </td> </tr> <tr> <td> document.write(<i>text</i>) </td> <td> Write to the output of an HTML element </td> </tr> </tbody> </table> <p>To add events:</p> <table> <thead> <tr> <th> Method </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> document.getElementById(<i>id</i>).onclick = function(){<i>code</i>} </td> <td> Add event handler to onclick event </td> </tr> </tbody> </table> <h3>Accessing HTML objects</h3> <p>When HTML DOM Level 1 was introduced in 1998, only 11 HTML and ... objects were introduced, which are still valid in HTML5, but many more were added later in HTML DOM Level 3. I have provided some of these items for you in the following tables:</p> <table> <thead> <tr> <th> property </th> <th> Description </th> </tr> </thead> <tbody> <tr> <td> document.anchors </td> <td> Returns all <code><a></code>s that have an attribute named <code>name</code> </td> </tr> <tr> <td> document.baseURI </td> <td> Returns base URI of the document </td> </tr> <tr> <td> document.body </td> <td> Returns us the <code><body></code> element </td> </tr> <tr> <td> document.cookie </td> <td> It returns all the cookies in the document </td> </tr> <tr> <td> document.doctype </td> <td> Returns the doctype </td> </tr> <tr> <td> document.documentElement </td> <td> Returns the <code><html></code> element </td> </tr> <tr> <td> document.documentMode </td> <td> Returns the mode used by the browser </td> </tr> <tr> <td> document.documentURI </td> <td> Returns the URI of the current document </td> </tr> <tr> <td> document.domain </td> <td> Returns the domain name of the document server </td> </tr> <tr> <td> document.embeds </td> <td> Returns all <code><embed></code> elements </td> </tr> <tr> <td> document.forms </td> <td> Returns all <code><form></code> elements </td> </tr> <tr> <td> document.head </td> <td> Returns the <code><head></code> element </td> </tr> <tr> <td> document.images </td> <td> Returns all <code><img></code> elements </td> </tr> <tr> <td> document.implementation </td> <td> Returns all DOM implementations </td> </tr> <tr> <td> document.inputEncoding </td> <td> Returns the encoding (character set) of the document. </td> </tr> <tr> <td> document.lastModified </td> <td> Returns the date and time when the document was last updated </td> </tr> <tr> <td> document.links </td> <td> Returns all <code><area></code> and <code><a></code> that have <code>href</code> </td> </tr> <tr> <td> document.readyState </td> <td> Returns the loading position of the document </td> </tr> <tr> <td> document.referrer </td> <td> Returns the URI of the linked document (referrer) </td> </tr> </tbody> </table> <p>The main use of the JavaScript language (at least in the web context) is to change HTML elements and their styles, and it does not do much by itself (in the frontend); That is, we try to learn different JavaScript statements so that we can use them later in changing the shape of HTML elements. Of course, the JavaScript language is not limited to the frontend and is used in many cases such as the backend.</p> <h3>Access to HTML elements</h3> <p>Using JavaScript, we can access all kinds of HTML tags, but we need to learn how to do this. There are different ways to access these elements, and each way has its own statements and usage; These access ways are:</p> <ul> <li> Accessing HTML elements by <code>id</code> (like <code>id="first"</code>) </li> <li> Accessing HTML elements through the tag itself (such as <code><p></code>) </li> <li> Accessing HTML elements by class name (eg <code>class="first"</code>) </li> <li> Accessing HTML elements through CSS selectors (such as <code>.first</code>) </li> <li> Accessing HTML elements through collections of HTML objects (such as forms) </li> </ul> <h3>Access through id</h3> <p>The easiest way to access HTML tags is through <code>id</code>; For this, you need to use the <code>getElementById()</code> statement:</p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <h2>Finding HTML Elements by Id</h2> <p id="intro">Hello World!</p> <p>This example demonstrates the <b>getElementsById</b> method.</p> <p id="demo"></p> <script> var myElement = document.getElementById("intro"); document.getElementById("demo").innerHTML = "The text from the intro paragraph is " + myElement.innerHTML; </script> </body> </html></code></pre> <center></center> <p>If the HTML tag is found by our JavaScript statement, it will be returned as an object, but if nothing is found, it will return <code>null</code>.</p> <h3>Access through the tag itself</h3> <p>One of the other ways to access HTML elements is through the name of the tag itself; For this, you need to use the <code>getElementsByTagName()</code> statement. In the following example, I want to find all <code><p></code> elements:</p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <h2>Finding HTML Elements by Tag Name</h2> <p>Hello World!</p> <p>This example demonstrates the <b>getElementsByTagName</b> method.</p> <p id="demo"></p> <script> var x = document.getElementsByTagName("p"); document.getElementById("demo").innerHTML = 'The text in first paragraph (index 0) is: ' + x[0].innerHTML; </script> </body> </html></code></pre> <center></center> <p>If you pay attention, in this example, all <code>p</code> tags are returned to us like an array/object, and we deal with them in the same way (using index <code>0</code>).</p> <p>These examples can be made more advanced; The following code first finds elements that have <code>id="main"</code> and then finds elements that have <code><p></code> tags and are inside main:</p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <h2>Finding HTML Elements by Tag Name</h2> <div id="main"> <p>The DOM is very useful.</p> <p>This example demonstrates the <b>getElementsByTagName</b> method.</p> </div> <p id="demo"></p> <script> var x = document.getElementById("main"); var y = x.getElementsByTagName("p"); document.getElementById("demo").innerHTML = 'The first paragraph (index 0) inside "main" is: ' + y[0].innerHTML; </script> </body> </html></code></pre> <center></center> <h3>Access by class</h3> <p>If you want to find all the HTML elements that belong to the same class, you should use the <code>getElementsByClassName()</code> statement. For example, the following code finds all elements that have <code>class="intro"</code>:</p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <h2>Finding HTML Elements by Class Name</h2> <p>Hello World!</p> <p class="intro">The DOM is very useful.</p> <p class="intro">This example demonstrates the <b>getElementsByClassName</b> method.</p> <p id="demo"></p> <script> var x = document.getElementsByClassName("intro"); document.getElementById("demo").innerHTML = 'The first paragraph (index 0) with class="intro": ' + x[0].innerHTML; </script> </body> </html></code></pre> <center></center> <p>Note: This statement does not work in Internet Explorer 8 and earlier versions.</p> <h3>Access through CSS selectors</h3> <p>If you want to find all HTML elements that match a specific CSS selector, you can use the <code>querySelectorAll()</code> statement. CSS selectors are things like <code>id</code>, <code>class</code>, <code>attributes</code>, <code>attribute value</code>, etc.</p> <p>In the following example, we want to find all <code><p></code>s that contain <code>class="intro"</code>:</p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <h2>Finding HTML Elements by Query Selector</h2> <p>Hello World!</p> <p class="intro">The DOM is very useful.</p> <p class="intro">This example demonstrates the <b>querySelectorAll</b> method.</p> <p id="demo"></p> <script> var x = document.querySelectorAll("p.intro"); document.getElementById("demo").innerHTML = 'The first paragraph (index 0) with class="intro": ' + x[0].innerHTML; </script> </body> </html></code></pre> <h3>Access through the HTML objects</h3> <p>The best way to learn this type of access is by example. In the following example, I want to find the form with <code>id="frm1"</code> among the HTML forms and show its different values:</p> <pre><code class="language-html"><!DOCTYPE html> <html> <body> <h2>Finding HTML Elements Using document.forms</h2> <form id="frm1" action=""> First name: <input type="text" name="fname" value="Donald"><br> Last name: <input type="text" name="lname" value="Duck"><br><br> <input type="submit" value="Submit"> </form> <p>Click "Try it" to display the value of each element in the form.</p> <button onclick="myFunction()">Try it</button> <p id="demo"></p> <script> function myFunction() { var x = document.forms["frm1"]; var text = ""; var i; for (i = 0; i < x.length ;i++) { text += x.elements[i].value + "<br>"; } document.getElementById("demo").innerHTML = text; } </script> </body> </html></code></pre> <center></center> <p>If you go to the output of the above code and then click on the <code>try it</code> button, you will see that the different values of the form (<code>First name</code>, <code>Last name</code> and <code>submit</code>) will be displayed for you. Now enter your name and family in the form and click on the <code>try it</code> button again. This time your name and family will be displayed!</p>
author | albro | ||||||
---|---|---|---|---|---|---|---|
permlink | js-dom-and-tricks-by-albro | ||||||
category | hive-169321 | ||||||
json_metadata | "{"app":"peakd/2023.11.3","format":"markdown","author":"albro","description":"In this post, I'm talking about DOM, the most important and practical topic in JavaScript.","tags":["development","programming","threads","gosh","neoxian","chessbrothers","stem","tricks","hive-engine","leofinance"],"users":[],"image":["https://files.peakd.com/file/peakd-hive/albro/23viREBHANfvmqJf3ZCcPX1C1JVrSMy43V5i5eskFxJjDg6gTo4VgVBtJYYQ1jAzyypfA.png","https://files.peakd.com/file/peakd-hive/albro/23twAKVLErbTRLoF8omsomLLor9MNWWDKhWNNc4u21qKo6mNdE4udwzWUCNnooUHoR52A.gif","https://files.peakd.com/file/peakd-hive/albro/23uFwDcUQZ8QHJ8DrqvXV6NYX2MboJQaukZbu8K2pAAnC13WDvnCgdiGCWQ1xCvgPqcdV.png","https://files.peakd.com/file/peakd-hive/albro/23uRLAvwUHwFud6eNnd3Unf99FZewN36gSg2MdLbycLTaKMQi4GVYD6pmi1p5hLnkDLAB.png","https://files.peakd.com/file/peakd-hive/albro/23uFwS9vX4qpwM3akCeSMbiU2cb1g8cNMMh4yyvyitEy1bxeWhC8pEu2TxNV5NpvVCKDa.png","https://files.peakd.com/file/peakd-hive/albro/23uFwSAz719V9vHHW9C9YfYXoUdBodcmG4RoXTiEnJtpTBucELtBYak95HGJoULuYRUuo.png","https://files.peakd.com/file/peakd-hive/albro/23viTTuZaT2LJ3oTyfxNYNUsFCask2BXn2h7LBHH7vtwaqvAqmDS2JQ3iYSok6nrQLyGe.png","https://files.peakd.com/file/peakd-hive/albro/23tcNngg3uT86E615Bq3EMGTQXqJsEoXavZx19dwVNhGVDb4KebZgFXXyC1BLtDLXgdkJ.png"]}" | ||||||
created | 2024-01-17 06:05:54 | ||||||
last_update | 2024-01-17 06:05:54 | ||||||
depth | 0 | ||||||
children | 7 | ||||||
last_payout | 2024-01-24 06:05:54 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 3.739 HBD | ||||||
curator_payout_value | 3.744 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 21,287 | ||||||
author_reputation | 30,477,419,385,789 | ||||||
root_title | "JS Dom & Tricks By albro" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 130,545,098 | ||||||
net_rshares | 18,333,612,372,494 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
flemingfarm | 0 | 1,224,496,334 | 0.24% | ||
kevinwong | 0 | 877,864,940 | 0.24% | ||
justtryme90 | 0 | 560,563,686 | 30% | ||
eric-boucher | 0 | 6,468,575,765 | 1.2% | ||
thecryptodrive | 0 | 28,341,380,721 | 0.48% | ||
roelandp | 0 | 163,758,983,644 | 15% | ||
neoxian | 0 | 6,441,036,146,280 | 30% | ||
cloh76 | 0 | 1,699,411,276 | 1.2% | ||
sunshine | 0 | 86,849,435,608 | 15% | ||
rmach | 0 | 6,391,307,511 | 15% | ||
lemouth | 0 | 771,816,183,527 | 30% | ||
lamouthe | 0 | 2,351,948,359 | 30% | ||
tfeldman | 0 | 2,327,955,215 | 1.2% | ||
sergiomendes | 0 | 571,860,978 | 1.2% | ||
metabs | 0 | 3,307,949,790 | 30% | ||
mcsvi | 0 | 131,243,413,439 | 50% | ||
lk666 | 0 | 71,583,563,022 | 100% | ||
cnfund | 0 | 4,963,429,018 | 2.4% | ||
boxcarblue | 0 | 5,265,784,553 | 1.2% | ||
justyy | 0 | 13,671,809,069 | 2.4% | ||
michelle.gent | 0 | 1,442,915,578 | 0.48% | ||
curatorwhale | 0 | 10,622,950,220 | 87.9% | ||
curie | 0 | 171,234,777,012 | 2.4% | ||
modernzorker | 0 | 1,653,912,331 | 1.68% | ||
techslut | 0 | 80,668,688,590 | 12% | ||
slider2990 | 0 | 6,425,250,989 | 100% | ||
steemstem | 0 | 552,422,555,163 | 30% | ||
edb | 0 | 2,216,822,006 | 3% | ||
bigtakosensei | 0 | 739,706,827 | 0.6% | ||
walterjay | 0 | 204,693,989,286 | 15% | ||
valth | 0 | 4,501,304,187 | 15% | ||
metroair | 0 | 10,905,549,573 | 2.4% | ||
driptorchpress | 0 | 912,003,410 | 0.6% | ||
dna-replication | 0 | 1,140,672,710 | 30% | ||
privex | 0 | 1,505,154,209 | 2.4% | ||
steemiteducation | 0 | 580,079,743 | 1.2% | ||
dhimmel | 0 | 160,227,225,993 | 7.5% | ||
oluwatobiloba | 0 | 1,026,318,937 | 30% | ||
detlev | 0 | 11,431,707,972 | 0.72% | ||
federacion45 | 0 | 3,695,726,604 | 1.2% | ||
gamersclassified | 0 | 1,236,315,057 | 1.2% | ||
iansart | 0 | 1,087,558,491 | 1.2% | ||
forykw | 0 | 5,056,563,634 | 1.2% | ||
mobbs | 0 | 75,182,329,845 | 30% | ||
eliel | 0 | 1,147,339,104 | 2.4% | ||
jerrybanfield | 0 | 7,840,415,535 | 2.4% | ||
rt395 | 0 | 2,064,050,179 | 1.5% | ||
bitrocker2020 | 0 | 4,603,888,226 | 0.48% | ||
sustainablyyours | 0 | 10,349,049,648 | 15% | ||
arunava | 0 | 7,249,544,481 | 0.96% | ||
schoolforsdg4 | 0 | 1,067,823,916 | 5% | ||
samminator | 0 | 18,523,577,450 | 15% | ||
enjar | 0 | 19,380,916,796 | 2.16% | ||
lorenzor | 0 | 1,332,257,691 | 50% | ||
alexander.alexis | 0 | 18,300,536,172 | 30% | ||
dandesign86 | 0 | 16,168,702,355 | 8% | ||
jayna | 0 | 3,396,500,477 | 0.48% | ||
deanlogic | 0 | 584,027,624 | 1.2% | ||
princessmewmew | 0 | 3,321,097,906 | 1.2% | ||
grapthar | 0 | 472,674,451 | 1.8% | ||
joeyarnoldvn | 0 | 472,636,928 | 1.47% | ||
gunthertopp | 0 | 32,694,603,221 | 0.6% | ||
pipiczech | 0 | 987,283,474 | 2.4% | ||
empath | 0 | 1,804,940,057 | 1.2% | ||
minnowbooster | 0 | 1,057,177,308,935 | 20% | ||
felt.buzz | 0 | 4,475,412,541 | 0.6% | ||
howo | 0 | 938,427,296,921 | 30% | ||
tsoldovieri | 0 | 3,145,977,015 | 15% | ||
akomoajong | 0 | 1,041,081,424 | 30% | ||
neumannsalva | 0 | 2,027,829,039 | 1.2% | ||
stayoutoftherz | 0 | 70,355,001,152 | 0.6% | ||
abigail-dantes | 0 | 11,029,343,392 | 30% | ||
coindevil | 0 | 1,251,231,985 | 1.92% | ||
pixelfan | 0 | 54,379,298,452 | 6% | ||
zonguin | 0 | 1,581,213,547 | 7.5% | ||
investingpennies | 0 | 8,469,196,599 | 2.4% | ||
khalil319 | 0 | 730,254,161 | 10% | ||
martibis | 0 | 650,432,588 | 0.72% | ||
redrica | 0 | 889,120,165 | 1.2% | ||
iamphysical | 0 | 874,011,925 | 90% | ||
dipom98 | 0 | 481,815,390 | 1.2% | ||
aaronleang | 0 | 9,277,773,939 | 20% | ||
zyx066 | 0 | 1,582,036,653 | 0.72% | ||
revo | 0 | 4,891,558,529 | 2.4% | ||
azulear | 0 | 1,398,308,347 | 100% | ||
psicoluigi | 0 | 834,519,454 | 50% | ||
rocky1 | 0 | 337,014,439,425 | 0.36% | ||
thelordsharvest | 0 | 1,929,591,052 | 2.4% | ||
sumant | 0 | 1,580,281,627 | 1.2% | ||
aidefr | 0 | 3,233,213,479 | 15% | ||
torico | 0 | 623,165,338 | 0.79% | ||
chinchilla | 0 | 275,510,921,179 | 100% | ||
sorin.cristescu | 0 | 6,185,393,557 | 1.2% | ||
therealwolf | 0 | 13,704,363,719 | 1.2% | ||
fatman | 0 | 9,018,700,007 | 2% | ||
mawit07 | 0 | 11,134,701,899 | 9.9% | ||
splash-of-angs63 | 0 | 1,310,041,718 | 12% | ||
cryptononymous | 0 | 820,228,264 | 1.2% | ||
deadzy | 0 | 501,345,676 | 10% | ||
meno | 0 | 11,511,199,429 | 1.2% | ||
buttcoins | 0 | 962,374,723 | 0.48% | ||
isnochys | 0 | 9,476,449,588 | 5% | ||
steemed-proxy | 0 | 473,532,473,018 | 2.4% | ||
fatkat | 0 | 609,202,654 | 1.19% | ||
doifeellucky | 0 | 921,308,956 | 1.2% | ||
enzor | 0 | 916,601,212 | 15% | ||
bartosz546 | 0 | 7,839,891,872 | 1.2% | ||
dandays | 0 | 13,630,640,188 | 0.96% | ||
alvinauh | 0 | 1,288,991,933 | 30% | ||
sunsea | 0 | 2,069,781,966 | 1.2% | ||
eonwarped | 0 | 9,049,076,664 | 1.25% | ||
postpromoter | 0 | 700,828,203,520 | 30% | ||
bluefinstudios | 0 | 1,692,458,073 | 0.72% | ||
steveconnor | 0 | 2,134,215,954 | 1.2% | ||
sankysanket18 | 0 | 684,066,097 | 15% | ||
dbddv01 | 0 | 1,074,521,964 | 7.5% | ||
smartsteem | 0 | 58,878,465,586 | 1.2% | ||
joedukeg | 0 | 1,338,696,058 | 25% | ||
aboutcoolscience | 0 | 159,445,881,092 | 30% | ||
afifa | 0 | 616,318,232 | 10% | ||
sandracarrascal | 0 | 496,982,165 | 50% | ||
sgt-dan | 0 | 30,906,267,652 | 50% | ||
kenadis | 0 | 8,114,494,001 | 30% | ||
bebeomega | 0 | 544,484,822 | 1.2% | ||
madridbg | 0 | 15,397,373,035 | 30% | ||
robotics101 | 0 | 9,243,919,637 | 30% | ||
lpv | 0 | 1,266,829,606 | 3.75% | ||
iptrucs | 0 | 10,531,851,992 | 25% | ||
elex17 | 0 | 1,396,879,571 | 100% | ||
punchline | 0 | 3,506,871,819 | 2.4% | ||
onestrong | 0 | 586,887,046 | 1% | ||
duke77 | 0 | 976,059,206 | 40% | ||
r00sj3 | 0 | 51,846,036,560 | 15% | ||
sco | 0 | 8,981,122,077 | 30% | ||
ennyta | 0 | 975,796,439 | 50% | ||
brotherhood | 0 | 8,839,768,883 | 2.4% | ||
abmakko | 0 | 2,044,756,327 | 15% | ||
juecoree | 0 | 1,773,680,603 | 21% | ||
stahlberg | 0 | 524,306,062 | 1.2% | ||
gabrielatravels | 0 | 874,171,523 | 0.84% | ||
vjap55 | 0 | 8,211,050,831 | 100% | ||
carn | 0 | 1,520,602,274 | 2.16% | ||
branbello | 0 | 496,112,034 | 15% | ||
hetty-rowan | 0 | 1,587,428,052 | 1.2% | ||
ydavgonzalez | 0 | 2,209,687,994 | 10% | ||
intrepidphotos | 0 | 7,243,582,704 | 22.5% | ||
fineartnow | 0 | 1,738,225,860 | 1.2% | ||
yoghurt | 0 | 692,089,523 | 2.4% | ||
steemvault | 0 | 942,365,522 | 2.4% | ||
fragmentarion | 0 | 6,935,442,474 | 30% | ||
bennettitalia | 0 | 805,032,440 | 1.2% | ||
utube | 0 | 1,684,126,740 | 2.4% | ||
amjadsharif | 0 | 1,826,781,524 | 30% | ||
microbot | 0 | 3,366,865,061 | 65.9% | ||
dynamicrypto | 0 | 1,868,640,238 | 1% | ||
neneandy | 0 | 2,739,634,756 | 2.4% | ||
marc-allaria | 0 | 1,794,894,898 | 1.2% | ||
sportscontest | 0 | 2,276,801,775 | 2.4% | ||
gribouille | 0 | 1,404,513,446 | 30% | ||
itharagaian | 0 | 3,169,031,946 | 40% | ||
pandasquad | 0 | 6,342,637,226 | 2.4% | ||
cool08 | 0 | 1,267,041,029 | 15% | ||
kingabesh | 0 | 579,729,011 | 15% | ||
miguelangel2801 | 0 | 782,106,229 | 50% | ||
mproxima | 0 | 1,065,646,151 | 1.2% | ||
didic | 0 | 803,033,842 | 1.2% | ||
warpedpoetic | 0 | 877,995,921 | 2.4% | ||
careassaktart | 0 | 756,062,525 | 2.4% | ||
jossduarte | 0 | 470,438,220 | 1.2% | ||
emiliomoron | 0 | 4,008,181,841 | 15% | ||
dexterdev | 0 | 1,206,590,750 | 15% | ||
photohunt | 0 | 1,765,950,636 | 2.4% | ||
geopolis | 0 | 1,967,329,874 | 30% | ||
robertbira | 0 | 3,220,777,311 | 7.5% | ||
anikys3reasure | 0 | 863,477,279 | 15% | ||
alexdory | 0 | 4,517,790,565 | 30% | ||
takowi | 0 | 25,685,641,407 | 2.4% | ||
irgendwo | 0 | 9,589,341,304 | 2.4% | ||
cyprianj | 0 | 2,587,144,448 | 2.4% | ||
kieranstone | 0 | 683,038,510 | 0.79% | ||
francostem | 0 | 4,128,036,015 | 30% | ||
endopediatria | 0 | 693,967,531 | 20% | ||
croctopus | 0 | 1,459,729,217 | 100% | ||
putu300 | 0 | 501,069,828 | 5% | ||
cryptictruth | 0 | 2,064,553,679 | 0.5% | ||
zipporah | 0 | 1,151,755,528 | 0.48% | ||
leomarylm | 0 | 846,793,346 | 1.2% | ||
superlotto | 0 | 5,897,539,974 | 2.4% | ||
oadissin | 0 | 34,150,472,844 | 15% | ||
bscrypto | 0 | 6,517,604,060 | 1.2% | ||
vonaurolacu | 0 | 737,916,658 | 1.2% | ||
movingman | 0 | 516,330,012 | 20% | ||
tomastonyperez | 0 | 16,819,244,641 | 50% | ||
bil.prag | 0 | 1,074,193,073 | 0.12% | ||
elvigia | 0 | 10,975,721,712 | 50% | ||
sanderjansenart | 0 | 2,333,632,247 | 1.2% | ||
vittoriozuccala | 0 | 927,465,249 | 1.2% | ||
qberry | 0 | 1,649,048,699 | 1.2% | ||
frissonsteemit | 0 | 520,579,013 | 1.2% | ||
broncofan99 | 0 | 9,152,473,858 | 20% | ||
rambutan.art | 0 | 871,819,273 | 2.4% | ||
greddyforce | 0 | 1,856,697,518 | 0.88% | ||
flyerchen | 0 | 540,330,282 | 1.2% | ||
gadrian | 0 | 189,685,204,228 | 22.5% | ||
fotogruppemunich | 0 | 705,191,142 | 0.6% | ||
therising | 0 | 42,530,947,211 | 2.4% | ||
cryptocoinkb | 0 | 917,736,100 | 1.2% | ||
eniolw | 0 | 16,240,155,557 | 100% | ||
de-stem | 0 | 16,452,615,747 | 29.7% | ||
imcore | 0 | 864,608,557 | 10% | ||
serylt | 0 | 1,351,041,483 | 29.4% | ||
misterlangdon | 0 | 1,244,993,760 | 50% | ||
josedelacruz | 0 | 4,832,005,737 | 50% | ||
legendchew | 0 | 50,283,268,788 | 100% | ||
kgakakillerg | 0 | 18,816,744,162 | 10% | ||
xawi | 0 | 21,959,944,628 | 30% | ||
erickyoussif | 0 | 689,143,013 | 100% | ||
indigoocean | 0 | 480,807,973 | 1.2% | ||
primersion | 0 | 377,452,117,781 | 20% | ||
deholt | 0 | 1,716,097,951 | 25.5% | ||
robmolecule | 0 | 22,465,056,082 | 10% | ||
ifeoluwa88 | 0 | 17,439,831,006 | 30% | ||
minerthreat | 0 | 1,546,278,921 | 1.2% | ||
meher04 | 0 | 1,604,639,226 | 30% | ||
temitayo-pelumi | 0 | 2,750,385,566 | 30% | ||
millibot | 0 | 3,367,418,129 | 48.2% | ||
andrick | 0 | 850,395,976 | 50% | ||
doctor-cog-diss | 0 | 27,474,134,436 | 30% | ||
trisolaran | 0 | 645,553,408 | 1.2% | ||
marcuz | 0 | 1,023,345,945 | 15% | ||
acont | 0 | 7,495,604,062 | 50% | ||
uche-nna | 0 | 2,740,137,479 | 1.92% | ||
vietthuy | 0 | 809,078,932 | 50% | ||
ajongcrypto | 0 | 1,033,332,321 | 30% | ||
we-are-lucky | 0 | 1,214,937,691 | 3% | ||
letenebreux | 0 | 1,624,474,518 | 40% | ||
cheese4ead | 0 | 1,943,300,872 | 1.2% | ||
mafufuma | 0 | 5,197,489,796 | 1% | ||
apshamilton | 0 | 6,274,666,724 | 0.3% | ||
gaottantacinque | 0 | 1,539,359,442 | 100% | ||
nattybongo | 0 | 65,284,009,250 | 30% | ||
drsensor | 0 | 646,933,616 | 24% | ||
revueh | 0 | 821,194,470 | 15% | ||
ubaldonet | 0 | 2,750,377,525 | 80% | ||
armandosodano | 0 | 1,547,848,482 | 1.2% | ||
lifeskills-tv | 0 | 4,199,778,489 | 30% | ||
marivic10 | 0 | 667,242,946 | 1.2% | ||
hamismsf | 0 | 1,968,057,741 | 0.3% | ||
goblinknackers | 0 | 74,658,621,646 | 7% | ||
anttn | 0 | 11,894,242,042 | 1.2% | ||
bambinaacida | 0 | 2,436,415,855 | 50% | ||
vixmemon | 0 | 667,720,523 | 1.8% | ||
yaelg | 0 | 495,867,063 | 0.72% | ||
kylealex | 0 | 4,581,433,472 | 10% | ||
gasaeightyfive | 0 | 2,770,430,481 | 100% | ||
fran.frey | 0 | 4,140,160,937 | 50% | ||
perpetuum-lynx | 0 | 895,981,783 | 29.4% | ||
jrevilla | 0 | 669,939,361 | 100% | ||
thelittlebank | 0 | 8,812,805,284 | 1.2% | ||
pboulet | 0 | 54,003,098,910 | 24% | ||
cercle | 0 | 2,075,537,433 | 40% | ||
stem-espanol | 0 | 1,860,559,757 | 100% | ||
voter002 | 0 | 1,233,312,055 | 2.8% | ||
cribbio | 0 | 5,008,953,181 | 100% | ||
cliffagreen | 0 | 4,770,393,249 | 10% | ||
aleestra | 0 | 13,398,883,341 | 80% | ||
palasatenea | 0 | 1,418,233,771 | 1.2% | ||
the.success.club | 0 | 1,308,139,840 | 1.2% | ||
l-singclear | 0 | 1,969,433,363 | 100% | ||
meanroosterfarm | 0 | 572,728,579 | 15% | ||
merlin7 | 0 | 4,760,377,861 | 2.4% | ||
brianoflondon | 0 | 35,775,720,411 | 0.6% | ||
giulyfarci52 | 0 | 1,692,051,954 | 50% | ||
esthersanchez | 0 | 4,054,777,731 | 60% | ||
kristall97 | 0 | 1,878,317,053 | 100% | ||
cwow2 | 0 | 55,417,160,831 | 57% | ||
steemcryptosicko | 0 | 3,993,826,304 | 0.48% | ||
certain | 0 | 566,827,778 | 0.28% | ||
multifacetas | 0 | 706,366,588 | 1.2% | ||
cakemonster | 0 | 1,163,470,948 | 2.4% | ||
cowpatty | 0 | 602,735,495 | 15% | ||
stem.witness | 0 | 1,769,958,746 | 30% | ||
hiddendragon | 0 | 645,016,386 | 38% | ||
chipdip | 0 | 792,395,989 | 10% | ||
jpbliberty | 0 | 3,550,547,995 | 0.6% | ||
double-negative | 0 | 520,342,727 | 20% | ||
priyandaily | 0 | 5,627,510,503 | 40% | ||
swiftcash | 0 | 1,717,849,624 | 100% | ||
steemstorage | 0 | 2,885,918,264 | 2.4% | ||
jtm.support | 0 | 2,222,758,954 | 30% | ||
crowdwitness | 0 | 81,491,419,464 | 15% | ||
hairgistix | 0 | 1,382,951,000 | 1.2% | ||
steemean | 0 | 10,047,271,907 | 5% | ||
proxy-pal | 0 | 539,466,201 | 2.4% | ||
newton666 | 0 | 629,732,709 | 15% | ||
cryptofiloz | 0 | 3,792,420,260 | 2.4% | ||
dawnoner | 0 | 712,196,743 | 0.24% | ||
photographercr | 0 | 854,038,112 | 0.48% | ||
larsito | 0 | 5,387,984,753 | 60% | ||
epicdice | 0 | 799,186,436 | 0.72% | ||
iamsaray | 0 | 569,595,590 | 1.2% | ||
beerlover | 0 | 965,222,550 | 0.72% | ||
tinyhousecryptos | 0 | 472,666,668 | 5% | ||
tggr | 0 | 549,839,402 | 1.2% | ||
aicu | 0 | 598,097,169 | 2.4% | ||
walterprofe | 0 | 2,261,830,818 | 15% | ||
zeruxanime | 0 | 683,366,613 | 15% | ||
afarina46 | 0 | 805,614,734 | 15% | ||
swayzilla | 0 | 3,611,520,424 | 100% | ||
waraira777 | 0 | 509,723,138 | 15% | ||
kgswallet | 0 | 1,075,366,294 | 20% | ||
everythingsmgirl | 0 | 2,210,068,592 | 15% | ||
reggaesteem | 0 | 485,920,771 | 5% | ||
akomoajong1 | 0 | 1,152,375,572 | 30% | ||
stemgeeks | 0 | 1,569,464,243 | 70% | ||
babytarazkp | 0 | 1,391,220,433 | 40% | ||
abh12345.stem | 0 | 1,241,130,754 | 100% | ||
dechuck | 0 | 8,374,849,491 | 50% | ||
bastionpm | 0 | 1,061,131,196 | 40% | ||
nazer | 0 | 1,152,235,239 | 15% | ||
elianaicgomes | 0 | 647,984,323 | 5% | ||
marriakjozhegp | 0 | 1,170,207,572 | 30% | ||
stem.alfa | 0 | 3,386,654,997 | 100% | ||
entrepreneur.one | 0 | 6,341,087,675 | 100% | ||
steemstem-trig | 0 | 595,276,782 | 30% | ||
baltai | 0 | 2,659,247,213 | 1.2% | ||
dmoonfire | 0 | 32,086,973,922 | 71% | ||
yggdrasil.laguna | 0 | 0 | 35% | ||
atheistrepublic | 0 | 2,873,853,422 | 1.2% | ||
ibt-survival | 0 | 32,116,883,505 | 10% | ||
sweetval | 0 | 13,986,355,153 | 50% | ||
curacer | 0 | 3,465,142,382 | 50% | ||
zirky | 0 | 1,212,596,462 | 2.04% | ||
gloriaolar | 0 | 639,476,241 | 0.72% | ||
lightpaintershub | 0 | 477,390,848 | 1% | ||
keys-defender | 0 | 7,310,119,372 | 50% | ||
monica-ene | 0 | 968,724,009 | 1.2% | ||
stemsocial | 0 | 250,543,388,305 | 30% | ||
greenforever | 0 | 1,959,463,527 | 30% | ||
mami.sheh7 | 0 | 844,315,511 | 15% | ||
the100 | 0 | 549,736,491 | 1.2% | ||
louis00334 | 0 | 851,209,659 | 20% | ||
hive-143869 | 0 | 281,272,787,600 | 40% | ||
cybercity | 0 | 11,054,406,182 | 2.4% | ||
emrysjobber | 0 | 895,382,670 | 25% | ||
noelyss | 0 | 8,276,076,070 | 15% | ||
balvinder294 | 0 | 6,534,593,578 | 20% | ||
lithajacobs | 0 | 2,952,673,183 | 100% | ||
jsalvage | 0 | 417,628,202 | 15% | ||
logicforce | 0 | 512,960,954 | 9.9% | ||
greengalletti | 0 | 7,801,185,578 | 15% | ||
quinnertronics | 0 | 15,997,730,133 | 7% | ||
buildahouse | 0 | 1,096,260,195 | 40% | ||
brofund-ag | 0 | 1,108,860,726 | 30% | ||
gohive | 0 | 989,282,632 | 100% | ||
altleft | 0 | 9,394,534,675 | 0.02% | ||
noalys | 0 | 512,018,381 | 1.2% | ||
borniet | 0 | 783,938,413 | 1.2% | ||
evagavilan2 | 0 | 596,557,710 | 1.2% | ||
gonklavez9 | 0 | 547,127,623 | 30% | ||
dorkpower | 0 | 3,434,969,066 | 100% | ||
blezyn | 0 | 571,552,404 | 1.2% | ||
doudoer | 0 | 683,252,536 | 50% | ||
cosplay.hadr | 0 | 524,263,499 | 2.4% | ||
hadrgames | 0 | 540,436,146 | 2.4% | ||
emeraldtiger | 0 | 2,906,801,319 | 20% | ||
meritocracy | 0 | 27,041,237,020 | 0.24% | ||
jmsansan | 0 | 1,973,064,585 | 1.2% | ||
eumorrell | 0 | 2,512,132,663 | 100% | ||
stayten | 0 | 15,207,716,021 | 25% | ||
sillybilly | 0 | 519,235,496 | 100% | ||
he-index | 0 | 8,675,420,177 | 10% | ||
meestemboom | 0 | 1,838,931,769 | 100% | ||
dcrops | 0 | 15,312,257,975 | 1.2% | ||
hive-129556 | 0 | 1,706,337,930 | 100% | ||
photochain | 0 | 381,742,495 | 100% | ||
entraide.rewards | 0 | 1,262,418,153 | 40% | ||
peerfinance | 0 | 48,962,692,786 | 100% | ||
yozen | 0 | 880,252,506 | 1.2% | ||
dronegirl | 0 | 439,160,731 | 100% | ||
cookaiss | 0 | 1,816,139,782 | 20% | ||
adamada.stem | 0 | 637,155,735 | 100% | ||
arunbiju969 | 0 | 553,281,915 | 14% | ||
dodovietnam | 0 | 1,236,826,732 | 1.2% | ||
failingforwards | 0 | 1,391,529,421 | 1.2% | ||
moraviareosa | 0 | 101,742,001 | 100% | ||
juecoree.stem | 0 | 569,181,198 | 100% | ||
nfttunz | 0 | 3,703,955,343 | 0.24% | ||
okluvmee | 0 | 1,144,332,168 | 1.2% | ||
atexoras.pub | 0 | 660,983,430 | 1.2% | ||
merit.ahama | 0 | 28,467,321,803 | 9% | ||
holovision.cash | 0 | 3,132,694,204 | 100% | ||
krrizjos18 | 0 | 1,301,438,812 | 15% | ||
memesupport | 0 | 1,339,031,518 | 30% | ||
holovision.stem | 0 | 621,059,399 | 100% | ||
podping | 0 | 3,643,809,514 | 0.6% | ||
jessicaossom | 0 | 1,807,801,104 | 1.2% | ||
drhueso | 0 | 588,325,900 | 1.2% | ||
solominer.stem | 0 | 891,142,216 | 100% | ||
chessbrotherspro | 0 | 352,650,281,816 | 100% | ||
seinkalar | 0 | 967,587,301 | 2.4% | ||
lexansky | 0 | 1,171,524,796 | 100% | ||
aries90 | 0 | 19,731,026,024 | 2.4% | ||
dlmmqb | 0 | 50,896,084,972 | 60% | ||
onewolfe | 0 | 472,943,777 | 25% | ||
cugel | 0 | 1,010,080,312 | 1.2% | ||
martinthemass | 0 | 616,370,919 | 100% | ||
blingit | 0 | 1,505,032,543 | 1.2% | ||
astrocat-3663 | 0 | 528,082,864 | 30% | ||
jrjaime | 0 | 17,374,681,040 | 100% | ||
rosmarly | 0 | 1,726,458,246 | 100% | ||
yixn | 0 | 14,954,562,701 | 1.2% | ||
waivio.curator | 0 | 1,634,956,606 | 3.12% | ||
cryptohaytham | 0 | 2,593,560,410 | 30% | ||
aichanbot | 0 | 901,094,195 | 2.4% | ||
crypto-shots | 0 | 11,145,194 | 50% | ||
saboin.stem | 0 | 595,169,771 | 100% | ||
vickoly | 0 | 3,883,259,844 | 1.2% | ||
oabreuf24 | 0 | 8,723,098,170 | 100% | ||
taradraz1 | 0 | 422,818,503 | 100% | ||
blacktarri | 0 | 735,290,758 | 1.2% | ||
hivepakistan | 0 | 1,335,830,509,145 | 60% | ||
netvalar | 0 | 6,220,519,695 | 50% | ||
allentaylor | 0 | 501,836,370 | 1.2% | ||
benwickenton | 0 | 1,117,618,901 | 2.4% | ||
henrietta27 | 0 | 703,714,323 | 1.2% | ||
jmis101 | 0 | 4,197,256,795 | 10% | ||
azj26 | 0 | 4,589,132,375 | 16% | ||
ydaiznfts | 0 | 4,118,524,308 | 50% | ||
cryptoshots.nft | 0 | 4,242,442,047 | 100% | ||
drivingindevon | 0 | 696,978,712 | 1.92% | ||
prosocialise | 0 | 25,457,282,597 | 15% | ||
bhdc | 0 | 869,314,438 | 2.4% | ||
archangel21 | 0 | 1,545,632,043 | 2.4% | ||
shawnnft | 0 | 4,226,128,403 | 6% | ||
independance | 0 | 1,323,061,840 | 40% | ||
filmmaking4hive | 0 | 925,441,920 | 2.4% | ||
ricardoeloy | 0 | 800,741,066 | 6% | ||
sabajfa | 0 | 2,729,594,613 | 15% | ||
nazom | 0 | 1,165,503,032 | 50% | ||
raca75 | 0 | 691,740,363 | 50% | ||
baboz | 0 | 585,938,624 | 0.6% | ||
cuzimgleb | 0 | 1,691,271,531 | 70% | ||
soyjoselopez | 0 | 472,825,853 | 20% | ||
sbtofficial | 0 | 2,028,369,026 | 1.2% | ||
tehseen-akhtar | 0 | 636,949,319 | 30% | ||
eunice9200 | 0 | 10,826,468,862 | 100% | ||
cryptoshots.play | 0 | 228,806,239 | 50% | ||
frankrey11 | 0 | 505,649,168 | 100% | ||
quduus1 | 0 | 7,144,698,800 | 18% | ||
protokkol | 0 | 2,186,343,977 | 30% | ||
vagabond42069 | 0 | 621,517,958 | 15% | ||
inibless | 0 | 692,951,838 | 15% | ||
cindynancy | 0 | 955,307,465 | 15% | ||
glimpsytips.dex | 0 | 4,260,699,316 | 7% | ||
gejami | 0 | 7,295,044,818 | 100% | ||
daje10 | 0 | 12,901,552,248 | 50% | ||
idksamad78699 | 0 | 1,025,677,348 | 1.2% | ||
sc000 | 0 | 600,169,067 | 2.4% | ||
minava.museum | 0 | 3,562,918,653 | 40% | ||
lordnight72 | 0 | 575,299,400 | 40% | ||
faiza34 | 0 | 2,342,866,746 | 30% | ||
mishkatfatima | 0 | 739,938,091 | 30% | ||
jijisaurart | 0 | 531,855,559 | 1.2% | ||
cryptoshotsdoom | 0 | 76,762,649 | 50% | ||
leogomez1414 | 0 | 2,138,122,163 | 25% | ||
tuba777 | 0 | 645,294,396 | 15% | ||
smariam | 0 | 2,539,960,304 | 25% | ||
osran | 0 | 4,818,939,071 | 100% | ||
rubilu | 0 | 5,379,346,904 | 50% | ||
hive-fr | 0 | 2,259,798,992 | 40% | ||
clpacksperiment | 0 | 961,788,563 | 1.2% | ||
theoneblog | 0 | 2,807,425,369 | 50% | ||
humbe | 0 | 1,368,740,518 | 1% | ||
moremoney28 | 0 | 3,078,392,820 | 15% | ||
jhymi | 0 | 8,012,029,091 | 15% | ||
lochard | 0 | 683,660,577 | 100% | ||
elcholitosanto | 0 | 15,034,302,484 | 50% | ||
peniel2010 | 0 | 855,309,631 | 50% | ||
hive-179513 | 0 | 1,983,464,418 | 50% | ||
sapphireleopard | 0 | 738,336,543 | 40% | ||
aaronm04 | 0 | 1,031,103,175 | 50% | ||
abu78 | 0 | 21,018,180,393 | 15% | ||
opticus | 0 | 652,847,001 | 1.2% | ||
karina.gpt | 0 | 0 | 100% | ||
albro | 0 | 40,942,030,680 | 100% | ||
foodchunk | 0 | 6,113,614,521 | 18% | ||
tahastories1 | 0 | 1,873,419,798 | 18% | ||
rhemagames | 0 | 2,247,110,231 | 1.2% | ||
les90 | 0 | 6,071,159,854 | 30% | ||
soylegionario | 0 | 1,045,711,789 | 2.4% | ||
samueluche07 | 0 | 645,439,970 | 15% | ||
ismartboy | 0 | 992,475,386 | 30% | ||
husnainyousaf | 0 | 2,838,591,237 | 60% | ||
nabab | 0 | 850,319,619 | 40% | ||
ledonjon | 0 | 1,194,441,012 | 40% | ||
snippets | 0 | 51,469,321,985 | 100% | ||
li-tntenshi | 0 | 1,251,978,763 | 100% | ||
agileautomation | 0 | 108,199,253 | 100% |
<h3>Congratulations!</h3><hr /><div class="pull-right"><img src="https://files.peakd.com/file/peakd-hive/chessbrotherspro/AJoJKGVARKHFCTHG7ee3GNkn5RMN7wixeJ52ipAgzDZ4QmeTcBdsk8hpi4pgj4e.png" alt="You have obtained a vote from CHESS BROTHERS PROJECT"/></div><div class="text-justify"><h3>✅ Good job. Your post has been appreciated and has received support from <a href="/@chessbrotherspro"><b>CHESS BROTHERS</b></a> ♔ 💪</h3><p><br>♟ We invite you to use our hashtag <b>#chessbrothers</b> and learn more <a href="/@chessbrotherspro/introducing-chess-brothers-project-the-most-innovative-community-combining-chess-fitness-and-more"><b>about us</b></a>.</p><p>♟♟ You can also reach us on our <a href="https://discord.gg/73sK9ZTGqJ" rel="noopener" title="This is going to take you to the Discord of Chess Brothers"><b>Discord server</b></a> and promote your posts there. </p><p>♟♟♟ Consider <a href="/@chessbrotherspro/teamwork-is-worthwhile-join-the-chess-brothers-healing-trail-supporting-the-work-being-done-and-earning-rewards"><b>joining our curation trail</b></a> so we work as a team and you get rewards automatically.</p><p>♞♟ Check out our <a href="/@chessbrotherspro"><b>@chessbrotherspro</b></a> account to learn about the curation process carried out daily by our team.</p><br>🥇 If you want to earn profits with your HP delegation and support our project, we invite you to join the <i>Master Investor</i> plan. <a href="/@chessbrotherspro/master-investor-plan-or-programa">Here you can learn how to do it.</a></div><div class="text-center"><p><br>Kindly</p><p><strong><em>The CHESS BROTHERS team</em></strong></p></div>
author | chessbrotherspro |
---|---|
permlink | re-js-dom-and-tricks-by-albro-20240119t051754z |
category | hive-169321 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2024-01-19 05:17:54 |
last_update | 2024-01-19 05:17:54 |
depth | 1 |
children | 0 |
last_payout | 2024-01-26 05:17:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,628 |
author_reputation | 77,589,492,571,269 |
root_title | "JS Dom & Tricks By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,597,332 |
net_rshares | 42,219,497,928 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
albro | 0 | 42,219,497,928 | 100% |
You can use var when it comes to declaring global variables, and yet the extra features they have compared to let and const are nominal and barely useful. Congrats!
author | eniolw |
---|---|
permlink | re-albro-2024118t174247383z |
category | hive-169321 |
json_metadata | {"tags":["development","programming","threads","gosh","neoxian","chessbrothers","stem","tricks","hive-engine","leofinance"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2024-01-18 21:42:48 |
last_update | 2024-01-18 21:42:48 |
depth | 1 |
children | 0 |
last_payout | 2024-01-25 21:42:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 165 |
author_reputation | 253,380,279,630,946 |
root_title | "JS Dom & Tricks By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,590,150 |
net_rshares | 43,961,061,311 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
albro | 0 | 43,961,061,311 | 100% |
That is a good class, when I started to learn front end programming this knowledge was essential and it isn't easy for those used with back end <center>https://files.peakd.com/file/peakd-hive/dlmmqb/23tkn1F4Yd2BhWigkZ46jQdMmkDRKagirLr5Gh4iMq9TNBiS7anhAE71y9JqRuy1j77qS.png</center> <center> <b> Want to Know more about Hivepakistan? Ping Us On [Hive Pakistan Discord server](https://discord.gg/3FzxCqFYyG) To support HivePakistan, delegate Hive Power to hivepakistan and earn 90% curation reward :) Here are some handy links for delegation </b> </center> <center>| [50 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=50%20HP) | [100 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=100%20HP) |[500 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=500%20HP) | [1000 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=1000%20HP) | [5000 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=5000%20HP) | [10000 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=10000%20HP) | [20000 HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=hivepakistan&vesting_shares=20000%20HP) | A delegation of 500 or more HP makes you earn Hivepakistan supporter badge. </center>
author | gwajnberg |
---|---|
permlink | re-albro-s7ey7u |
category | hive-169321 |
json_metadata | {"tags":["hive-169321"],"app":"peakd/2023.11.3"} |
created | 2024-01-17 16:09:30 |
last_update | 2024-01-17 16:09:30 |
depth | 1 |
children | 0 |
last_payout | 2024-01-24 16:09:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,509 |
author_reputation | 364,736,081,958,753 |
root_title | "JS Dom & Tricks By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,557,083 |
net_rshares | 41,462,246,043 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 86,544,767 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
albro | 0 | 41,375,701,276 | 100% |
Is there a reason you use var to declare variables? It's generally considered bad practice to do that, it's better you use const and let when declaring variables. Good job by the way
author | kushyzee |
---|---|
permlink | re-albro-2024117t75452141z |
category | hive-169321 |
json_metadata | {"type":"comment","tags":["hive-169321","development","programming","threads","gosh","neoxian","chessbrothers","stem","tricks","hive-engine","leofinance"],"app":"ecency/3.0.44-mobile","format":"markdown+html"} |
created | 2024-01-17 06:54:54 |
last_update | 2024-01-17 06:54:54 |
depth | 1 |
children | 1 |
last_payout | 2024-01-24 06:54:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 183 |
author_reputation | 91,879,023,731,471 |
root_title | "JS Dom & Tricks By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,545,729 |
net_rshares | 41,683,148,913 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 86,869,942 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
albro | 0 | 41,596,278,971 | 100% |
You are absolutely right!😮💨 This is a bad habit!!!!😪
author | albro |
---|---|
permlink | re-kushyzee-2024117t153752464z |
category | hive-169321 |
json_metadata | {"tags":["hive-169321","development","programming","threads","gosh","neoxian","chessbrothers","stem","tricks","hive-engine","leofinance"],"app":"ecency/3.0.37-vision","format":"markdown+html"} |
created | 2024-01-17 12:07:54 |
last_update | 2024-01-17 12:07:54 |
depth | 2 |
children | 0 |
last_payout | 2024-01-24 12:07:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 30,477,419,385,789 |
root_title | "JS Dom & Tricks By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,550,969 |
net_rshares | 86,706,737 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 86,706,737 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
https://inleo.io/threads/albro/re-leothreads-2rq3p5grs <sub> The rewards earned on this comment will go directly to the people ( albro ) sharing the post on LeoThreads,LikeTu,dBuzz.</sub>
author | poshthreads | ||||||
---|---|---|---|---|---|---|---|
permlink | re-albro-js-dom-and-tricks-by-albro-1181 | ||||||
category | hive-169321 | ||||||
json_metadata | "{"app":"Poshtoken 0.0.2","payoutToUser":["albro"]}" | ||||||
created | 2024-01-17 06:17:27 | ||||||
last_update | 2024-01-17 06:17:27 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2024-01-24 06:17:27 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 188 | ||||||
author_reputation | 415,471,585,053,248 | ||||||
root_title | "JS Dom & Tricks By albro" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 0 | ||||||
post_id | 130,545,225 | ||||||
net_rshares | 43,080,840,085 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
albro | 0 | 43,080,840,085 | 100% |
<div class='text-justify'> <div class='pull-left'> <img src='https://stem.openhive.network/images/stemsocialsupport7.png'> </div> Thanks for your contribution to the <a href='/trending/hive-196387'>STEMsocial community</a>. Feel free to join us on <a href='https://discord.gg/9c7pKVD'>discord</a> to get to know the rest of us! Please consider delegating to the @stemsocial account (85% of the curation rewards are returned). You may also include @stemsocial as a beneficiary of the rewards of this post to get a stronger support. <br /> <br /> </div>
author | stemsocial |
---|---|
permlink | re-albro-js-dom-and-tricks-by-albro-20240118t214338743z |
category | hive-169321 |
json_metadata | {"app":"STEMsocial"} |
created | 2024-01-18 21:43:39 |
last_update | 2024-01-18 21:43:39 |
depth | 1 |
children | 0 |
last_payout | 2024-01-25 21:43:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 565 |
author_reputation | 22,903,676,462,363 |
root_title | "JS Dom & Tricks By albro" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 130,590,175 |
net_rshares | 44,859,246,236 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
albro | 0 | 44,859,246,236 | 100% |