I want to create a URL with parameters with my Angular scope variables like this:
<tr ng-repeat="tag in videocontent | filter:ContentFilter">
<td><a href='/harald/?video={{tag.VideoURL}}&minute={{tag.VMinute}}&sekunde={{tag.VSecond}}' target='_blank' rel='nofollow' >{{tag.VSecond}}: </a></td>
</tr>
Unfortunately, the final URLs contain spaces and do not work. How can I get rid of them?
Thank you, Benjamin