hyperlink - How to Modify url in php.. i want to add some extra text at the end of output url -
$this->settings[''].'extractvideoid($groups[2]).'&type=download" target="_blank"class="vidscrab"title="download video">download
here code , result http://vidscrab.com/getvideo.php?videoid=yyukp7spj1y
i want add words after link eg &type=download
i need output http://vidscrab.com/getvideo.php?videoid=yyukp7spj1y&type=download
please help
i think need this
$("a").click(function() { $(this).prop("href", $(this).prop("href") + "&type=download"); });
Comments
Post a Comment