0

I'm currently working on an AngularJS project where user inputs from a drop down list and a text box on a page can be displayed on a new page. For instance, selecting option of Mr and entering a name which is then displayed on a new page as "You're Mr YourName." How can this be done? Any help?

1 Answer 1

1
<select ng-model="title">
   <option>Mr</option>
   <option>Ms</option>
</select>
<input type="text" ng-model="yourName">
You're {{title}} {{yourName}}
Sign up to request clarification or add additional context in comments.

4 Comments

I want the You're {{title}} {{yourName}} displayed on a new webpage. Any help?
I don't want it to be the homepage of my project. I want it to be displayed on another webpage.
@BorcheIvanov, I added a comment yesterday I guess you didn't see it.
@Sa E, please, see the comment I added yesterday.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.