Link to home
Start Free TrialLog in
Avatar of ITsolutionWizard
ITsolutionWizardFlag for United States of America

asked on

mvc, html 5, email

Below codes is on index.html
and how can i carry the id=search value to http://localhost:5489/Quote/BondInfo?

<form role="form"  class="search-form" method="post">
												<div class="form-group">
													<input type="text"  class="form-control" id="search" placeholder="Get our prices. Enter your email">
													<button onclick="fnNext()" class="btn btn-theme" type="button">
														Submit <i class="fa fa-chevron-right"></i>
													</button>
                                                    <script>
                                                        function fnNext() {

                                                            window.location.replace("http://localhost:5489/Quote/BondInfo");
                                                      }
                                                    </script>
                                                    <br />
                                                   <label style="color:white;" >Your Information is safe & secure</label>
												</div>
											</form>

Open in new window

Avatar of Chris Stanyon
Chris Stanyon
Flag of United Kingdom of Great Britain and Northern Ireland image

If you're using jQuery, I would advise you start using the unobtrusive event binding, so rather than binding in the button's onClick event, you just use jQuery. Give your button an ID and then bind then event:

//HTML
<input type="text"  class="form-control" id="search" placeholder="Get our prices. Enter your email">
<button class="btn btn-theme" id="gotoNext">Submit <i class="fa fa-chevron-right"></i></button>

Open in new window

//Jquery
$('#gotoNext').click(function() {
    var url = 'http://localhost:5489/Quote/BondInfo?search=' + $('#search').val();
    window.location.replace(encodeURI(url));
});

Open in new window

If you want to carry on with your raw Javascript, then you can get the search value with a call to getElementById.
Avatar of ITsolutionWizard

ASKER

i want to first save the email into local storage, then redirect to that webpage. Is it possible?
Sure - just store it in localStorage before doing the redirect:

$('#gotoNext').click(function() {
    var email = $('#search').val();
    var url = 'http://localhost:5489/Quote/BondInfo?search=' + email;
    localStorage.setItem('emailAddress', email);
    window.location.replace(encodeURI(url));
});

Open in new window

And I just don't want to use local host any more can I add .. ?
ASKER CERTIFIED SOLUTION
Avatar of Chris Stanyon
Chris Stanyon
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial