I think you mean the href not target. The noscript tag isn't intended for this. There are other strategies. The most common one for a link is:
Code:
<a href="xyz.php" onclick="doSomething(); return false;">Link Text or Image Tag</a>
By returning false, the link will not execute, your doSomething(); function will instead, or if there isn't anything you want it to do onclick, just do:
Code:
<a href="xyz.php" onclick="return false;">Link Text or Image Tag</a>
Either way, the non-javascript enabled browser will load the href, the javascript enabled browser will not.
Bookmarks