Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  2.  
  3. <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  4. <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  5. <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  6. <!--Reference the autogenerated SignalR hub script. -->
  7. <script src="~/Scripts/jquery.signalR-2.2.2.js"></script>
  8. <script src="/signalr/hubs"></script>
  9.  
  10. <script type="text/javascript">
  11. $("#hashtag").autocomplete({
  12. source: '@Url.Action("Search","Post")'
  13. });
  14.  
  15. function openurl() {
  16. var url = document.getElementById('hashtag').value;
  17. window.location.replace("http://localhost:50707/post/specificpostsview?hashtagname=" + url);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement