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
- Get multiplication in javascript using array input
- Remove hostname from URL in javascript
- Hide div on click outside of element in javascript/jQuery
- Short-circuits conditionals
- Multidimensional array example javascript
- How can I add a key/value pair to a JavaScript object
- Uncaught TypeError: Illegal invocation
- Concat variable with string in javascript
- Deault order of record in datatable
- How to fixed bootstrap navbar at top on scroll
- How to switch between Dark Mode and Light Mode based on cookie in Javascript
- Custom slider js
- Remove property from object in javascript
- ReferenceError: Cannot access 'myFunction' before initialization
- How to preview a word document in HTML using javascript
- How to push string in an array in Javascript
- How to add a property to object with condition in javascript
- JavaScript test() Method
- How to show and hide placeholder text
- ReferenceError: $ is not defined
- Execute function with condition in javascript
- How to set href value of anchor tag in javascript
- How to get query string value in javascript
- Cropper js with multiple images
- How to make entire Div clickable in javascript