I am trying to create an input field for an IP address, broadcast, and subnet. The inputs are used to change the ip of the server. Its an internal website.
I want to mak
jQuery IP plugin can be also be useful in your case
Working DEMO
You can use a mask plugin - DEMO
jQuery(function($){ $("input").mask("9?99.9?99.9?99.9?99", {placeholder:" "}); });