Click here to Skip to main content
15,881,812 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i have anchor tag in in my view. and a variable with some value in jquery script.
i need to assign like this:<a href="/Home/GoToAlbum?albumName=Name">

What I have tried:

HTML
<pre><li class="item" style="height:334.03px;width:449.61px;">


                                @*<h2 class="post-title">Album 1</h2>
                                    <img src="@Url.Content(item)" alt="" class="images"  style="height:334.03px;width:449.61px;"/>*@

                                <figure class="overlay">
                                    <a href="/Home/GoToAlbum?albumName=">
                                        <div class="text-overlay caption">
                                            <div class="info">
                                                <h2 class="post-title">Album 1</h2>
                                                <div class="meta"><span class="count">10 Photos</span> <span class="date">5 Oct 2015</span> </div>
                                            </div>
                                        </div>
                                        <img src="@Url.Content(item)" alt="" class="images" style="height:334.03px;width:449.61px;" />
                                    </a>
                                </figure>
                            </li>



JavaScript
var imageSrc = $(this).attr('src');

           var splitContent = imageSrc.split('/');
           var albumName = splitContent[3];   // i need albumName to be pass as a parameter to above anchor tag
Posted
Updated 17-Mar-17 3:51am

1 solution

Add an id to the link

<a id="albumLink" href="/Home/GoToAlbum?albumName=">


and update the href

var albumName = splitContent[3];
$("#albumLink").attr("href", $("#albumLink").attr("href") + albumName);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900