eba
eba

Reputation: 979

ASP MVC 2 Dynamic Href By Javascript

Here is the deal:

My link:

<li><% =Html.ActionLink("Scheme", null, null, null, new { @id = "schemeid" })%></li>

JavaScript for changing href:

<script>
    document.getElementById('schemeid').href= "Test/ALL";
</script>

Its working in any browser on ASP.NET dev.server on vs2010; but when i host it on iis 7. it fails. and in source of web page i have href=""

can any one help?

Upvotes: 0

Views: 745

Answers (2)

eba
eba

Reputation: 979

found solution. thx to every body. here is answer:

document.getElementById('list').innerHTML='<% =Html.ActionLink("Scheme","ALL","Test")%>';

<li id="list"><% =Html.ActionLink("Scheme", null, null)%></li>    

Upvotes: 0

goenning
goenning

Reputation: 6654

First of all, try using Firefox and check "Console Errors" to see if you got any javascript error. Second, try this:

<script>
    $(document).ready(function () {
        document.getElementById('schemeid').href= "Test/ALL";
    });
</script>

You'll need jQuery. Maybe your script is executing before rendering the tag.

Upvotes: 1

Related Questions