<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Bush-boy</title>
    <description>The latest articles on DEV Community by Bush-boy (@bushboy).</description>
    <link>https://dev.to/bushboy</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F497880%2F943eabf0-594b-457a-96f4-fa41ad2d4f2d.jpg</url>
      <title>DEV Community: Bush-boy</title>
      <link>https://dev.to/bushboy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bushboy"/>
    <language>en</language>
    <item>
      <title>Am fumbling all over with my fuctions... mouseover &lt;js&gt;</title>
      <dc:creator>Bush-boy</dc:creator>
      <pubDate>Sun, 25 Oct 2020 08:57:14 +0000</pubDate>
      <link>https://dev.to/bushboy/am-fumbling-all-over-with-my-fuctions-mouseover-js-h53</link>
      <guid>https://dev.to/bushboy/am-fumbling-all-over-with-my-fuctions-mouseover-js-h53</guid>
      <description>&lt;p&gt;Am trying to add css styles to my classes.... what am i doing wrong???&lt;/p&gt;

&lt;p&gt;//In the JS:&lt;br&gt;&lt;br&gt;
document.getElementsByClassName("header").addEventListener("mouseover", mouseOver);&lt;br&gt;
    function mouseOver() {&lt;br&gt;
    document.getElementsByClassName("header").$("header").addclass("mouseover")}&lt;br&gt;
document.getElementsByClassName("header").addEventListener("mouseout", mouseOut);&lt;br&gt;
    function mouseOut() {&lt;br&gt;
    document.getElementsByClassName("header").$("header").addclass("mouseout");}&lt;/p&gt;

&lt;p&gt;//In the CSS: &lt;br&gt;
.header {&lt;br&gt;
  display: flex;&lt;br&gt;
  justify-content: space-between;&lt;br&gt;
  padding-bottom: 10px;&lt;br&gt;
  text-decoration: rgb(108, 141, 240);&lt;br&gt;
  text-transform: uppercase;&lt;br&gt;
}&lt;br&gt;
.mouseover {&lt;br&gt;
  transition: 3s;&lt;br&gt;
  filter: brightness(20%);&lt;br&gt;
}&lt;br&gt;
.mouseout {&lt;br&gt;
  display: flex;&lt;br&gt;
  justify-content: space-between;&lt;br&gt;
  padding-bottom: 10px;&lt;br&gt;
  text-decoration: rgb(222, 233, 14);&lt;br&gt;
  text-transform: uppercase;&lt;br&gt;
}&lt;br&gt;
.header:hover {&lt;br&gt;
  display: flex;&lt;br&gt;
  justify-content: space-between;&lt;br&gt;
  padding-bottom: 10px;&lt;br&gt;
  /&lt;em&gt;text-decoration: rgb(151, 160, 189);&lt;/em&gt;/&lt;br&gt;
  text-transform: uppercase;&lt;br&gt;
  transition: 1s;&lt;br&gt;
  filter: brightness(15%);&lt;br&gt;
}&lt;/p&gt;

</description>
    </item>
    <item>
      <title>JS FUNCTIONS AND MORE BASIC QUESTIONS</title>
      <dc:creator>Bush-boy</dc:creator>
      <pubDate>Sat, 24 Oct 2020 08:53:00 +0000</pubDate>
      <link>https://dev.to/bushboy/js-functions-and-more-basic-questions-3lfd</link>
      <guid>https://dev.to/bushboy/js-functions-and-more-basic-questions-3lfd</guid>
      <description>&lt;p&gt;Am learning how to create webpages, i have gone through basic html n css, now am trying to make javascript work but theres alot am not understanding about the code, so i was just viewing fuctions in js and having trouble understanding this statement...&lt;/p&gt;

&lt;p&gt;const factorial = function fac(n) { return n &amp;lt; 2 ? 1 : n * fac(n - 1) }&lt;/p&gt;

&lt;p&gt;console.log(factorial(3))&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
