Can we search a term (eg. \"onblur\") recursively in some folders only in specific files (html files)?
grep -Rin \"onblur\" *.html
This ret
Consider checking this answer and that one.
Also this might help you: grep certain file types recursively | commandlinefu.com.
The command is:
grep -r --include="*.[ch]" pattern .
And in your case it is:
grep -r --include="*.html" "onblur" .