
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
- Uncaught TypeError: Illegal invocation
- Javascript get only 10 characters from string
- How to use JavaScript to search for items in a list
- How to make entire Div clickable in javascript
- How to validate empty space in textbox in Javascript
- How to preview a word document in HTML using javascript
- How to validate input type file size in javascript
- How to push string in an array in Javascript
- On click enter redirect to another URL with parameters in javascript
- How to fixed bootstrap navbar at top on scroll
- How to display an image in Javascript onclick
- Uncaught TypeError: Cannot read property 'addEventListener' of undefined
- How to open modal after redirect
- ReferenceError: $ is not defined
- Javascript get data-id attribute value
- Json stringify
- Deault order of record in datatable
- Check if value exists in array javascript
- How to preview video before uploading in javascript
- How to get data from localstorage in javascript
- Concat variable with string in javascript
- How to remove duplicate values from array in javascript
- How to check caps lock is on in javascript
- Get multiplication in javascript using array input
- ReferenceError: Cannot access 'myFunction' before initialization