Search
 
SCRIPT & CODE EXAMPLE
 

HTML

bulma upload file

<!-- with name setup -->
<div class="file">
  <label class="file-label">
    <input class="file-input" type="file" name="resume" onchange="showName(event)">
    <span class="file-cta">
      <span class="file-icon">
        <i class="fas fa-upload"></i>
      </span>
      <span class="file-label" id="file-name">
        Choose a file…
      </span>
    </span>
  </label>
</div>

<script>
  var fileName = document.getElementById("file-name")
  function showName(event){
	fileName.innerText = event.target.files[0].name;
  }
</script>
Comment

bulma file upload

<div class="file">
  <label class="file-label">
    <input class="file-input" type="file" name="resume">
    <span class="file-cta">
      <span class="file-icon">
        <i class="fas fa-upload"></i>
      </span>
      <span class="file-label">
        Choose a file…
      </span>
    </span>
  </label>
</div>
Comment

PREVIOUS NEXT
Code Example
Html :: Uncaught ReferenceError: Chartist is not defined 
Html :: postcss minify 
Html :: HTML <small Element 
Html :: html problem finder 
Html :: how to add a link to your images in html 
Css :: XAMPP: Another web server daemon is already running 
Css :: get rid of arrows number input 
Css :: css way media query 
Css :: overflow dottet 
Css :: css get rid of button outline on click 
Css :: button css shadow 
Css :: css no underline 
Css :: fixed image background css 
Css :: css pre wrap text 
Css :: css make image gray 
Css :: up scale body css 
Css :: make ane element not selectable css 
Css :: rotate text css 
Css :: instagram gradient css 
Css :: disable text wrap css 
Css :: how to use font awesome unicode in css 
Css :: css prevent text blue selection 
Css :: css if screen size less than 
Css :: html font white text with black border 
Css :: gatsby hide scrollbar 
Css :: vertcial text css 
Css :: button on top right corner css 
Css :: scrollable table vertical 
Css :: get all tables laravel 
Css :: check if swap is working 
ADD CONTENT
Topic
Content
Source link
Name
5+3 =