Resolve URL's for ASP.NET in jQuery?
- by TruMan1
I would like to use "~/" and resolve on the client site.
For example, I would want to do this:
<a href="~/page.aspx">website link</a>
<img src="~/page.aspx" />
I would have my base URL's in ASP.NET like this:
<script type="text/javascript">
var baseUrl = "<%= ResolveUrl("~/") %>";
</script>
Would I need a jQuery plugin for this or can this be a achieved with a chained command?