/    Sign up×
Community /Pin to ProfileBookmark

PROBLEM WITH MY OUTPUT

please this is my code and i want help
anytime i input a name into the text box, and clicks the “click here” button, the result appears on top of the text box

i want to be able to control where the result apperas, and maybe the font size etc of the result, any help??
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
<p id=”demo”></p>
ENTER YOUR NAME :
<input type=”text” name=”fname” id=”fname”>

<button onclick=”showName();”>CLICK HERE</button>

<script type=”text/javascript”>
function showName()
{
var x = document.getElementById(“fname”).value;

document.getElementById(“demo”).innerHTML = x;
}

</script>
</body>
</html>

to post a comment
JavaScript

2 Comments(s)

Copy linkTweet thisAlerts:
@WebnerdDec 10.2019 —  document.getElementById("demo").innerHTML = '<span class="x-user-input">' + x +'</span>';

Use CSS to style a class:

.x-user-input {

font-family: Arial;

font-size: 14px;

color: red;

}
Copy linkTweet thisAlerts:
@BENSONY63authorDec 10.2019 — Thanks so much glad to meet you
×

Success!

Help @BENSONY63 spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 4.25,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,

tipper: @Samric24,
tipped: article
amount: 1000 SATS,
)...