TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
umair mohsin
1.3k
387
64.8k
question about header in javascript
Feb 22 2015 1:21 PM
i want to make a dynamic header control using following method:
function myfunction()
{
var btn=document.createElement("input");
btn.value="click me";
btn.type="button";
btn.title="dynamic button";
btn.onclick=function()
{
alert("you click dynamic button");
}
document.body.appendChild(btn);
}
function is called using button click event.originally this was the method of creating a button.although button is creating but header is not creating using this function. i replaced
input
by
H3
.
Reply
Answers (
1
)
question about loops
how to use jquery in asp.net application