sai kumar


{ City }
< Country > india
* Profession *
User No # 109395
Total Questions Posted # 0
Total Answers Posted # 1

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 3
Users Marked my Answers as Wrong # 0
Questions / { sai kumar }
Questions Answers Category Views Company eMail




Answers / { sai kumar }

Question { HCL, 3614 }

Can we create buttons in JavaScript ? if yes how? pls provide
sample code... Thanks in advance.....


Answer

We can create in multiple ways.Here I am doing by using jquery

HTML:




JAVASCRIPT:
$(document).ready(function () {
$("#CreateButton").click(
function () { $('#target').append('')
}
);
});

Is This Answer Correct ?    3 Yes 0 No