input fields are shown side by side like four fields mobile and email and name and location using only JavaScript or jquery
inputs should be showing side by side as default as far as I'm aware. it would also depend on what you're layout is looking like now. Below is just some very basic HTML that I threw in without any CSS or Javascript and they all show side by side.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="div">
<input type="text" name="" id="">
<input type="text" name="" id="">
<input type="text" name="" id="">
</div>
</body>
</html>