Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript How to prevent a user from typing in an input field Re: How to prevent a user from typing in an input field

#72681
rickylamerz
Member

Found a solution.

Use:



And jQuery / Javascript


$(document).ready(function(){
$('.noChange').focus(function(){
$('.noChange').blur();
});
});