Jason28 Posted June 9, 2008 Share Posted June 9, 2008 Hi it is me again Could anyone please give me a working example of javascript that checks to see if a field contains certain text and if it doesn't it errors? Kinda like preg_match() with php. I have one field that is used to upload .mp3 files only so I would like javascript to check that field to see if it contains .mp3 and if not it errors before the user uploads it. Thanks! Link to comment https://forums.phpfreaks.com/topic/109332-solved-checking-if-text-field-has-certain-text-if-not-alert/ Share on other sites More sharing options...
Jason28 Posted June 9, 2008 Author Share Posted June 9, 2008 Oh NM I found a working example finally if (document.forms[0].song_hifi.value.lastIndexOf(".mp3")==-1) { alert("Please upload only .mp3 extension file"); return false; } Link to comment https://forums.phpfreaks.com/topic/109332-solved-checking-if-text-field-has-certain-text-if-not-alert/#findComment-560808 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.