
How to get file extension using javascript/jquery
Created at 16-Jul-2021,
By samar
How to get file extension using javascript/jquery
Through the use of the programming language, we will work together to solve the "How to get file extension using javascript/jquery" puzzle in this lesson.
You can get file extension in HTML using javascript/jquery function. You have to pass the filename to the javascript function and this function returns the format of the file. By using this function you can get that the file is an image (png, jpg, jpeg), pdf, or in any other format.-
Get file extension using file name with replace method in javascript
<script> function getFileExtension(fileName){ var fileExtension; fileExtension = fileName.replace(/^.*\./, ''); return fileExtension; } var fileExt = getFileExtension('filename.jpg'); console.log(fileExt); </script>
If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.
Don't forget to share this article! Help us spread the word by clicking the share button below.
We appreciate your support and are committed to providing you valuable and informative content.
We are thankful for your never ending support.
Random Code Snippet Queries: Javascript
- How to get the length of a number in JavaScript
- Uncaught TypeError: $(...).summernote is not a function
- Generate 6 digit random number in javascript
- Javascript to print Fibonacci series upto 15 Observations
- Execute function with condition in javascript
- Json stringify
- Get multiplication in javascript using array input
- Prism js horizontally overflowing its container
- Check if value exists in array javascript
- How to check caps lock is on in javascript
- How to remove duplicate values from array in javascript
- Uncaught TypeError: Illegal invocation
- ReferenceError: Cannot access 'myFunction' before initialization
- How to open modal after redirect
- How to set href value of anchor tag in javascript
- Short-circuits conditionals
- How to Set data to localstorage in javascript
- Concat variable with string in javascript
- How to preview a word document in HTML using javascript
- Javascript get data-id attribute value
- Animating numbers counting Javascript
- JavaScript test() Method
- How to fixed bootstrap navbar at top on scroll
- Hide div on click outside of element in javascript/jQuery
- Remove hostname from URL in javascript