Reputation: 3953
Is it possible to add a new hyper link using jquery/javascript right aligned to "View Results" in below script ?
In below example there is a new hyper link with same name "View Results"
I think I need to modify class - 'pds-view-results'
Upvotes: 0
Views: 58
Reputation: 5505
See this demo: http://jsfiddle.net/rathoreahsan/25LjE/14/
JQUERY:
$('.pds-view-results').after('<a href="#">test</a>')
Initialization:
$(document).ready(function(){
$('.pds-view-results').after('<a href="#">test</a>')
});
OR
$(function(){
$('.pds-view-results').after('<a href="#">test</a>')
});
OR
$(window).load(function(){
$('.pds-view-results').after('<a href="#">test</a>')
})
Upvotes: 1