jquery - How to write a text in two textbox control at a time -


I am working with jquery, I want to write a text in two text box controls at a time.

HTML

  & lt; Input type = "text" id = "textbox1" /> & Lt; Input type = "text" id = "textbox2" />  

jQuery

$ ('# textbox1, # textbox2'). Val ('some text');


Comments