1
vote
How to detect (using .ASPX) if Javascript is enabled on browser
In .net, you can use Request.Browser.JavaScript to detect if the browser supports JavaScript. However, the user may still have Javascript disabled. An ugly way to check to see if Jav …
2
votes
Is there a way to highlight the target of a bookmark? (www.site.com/page.htm#bookmark) ?
You can also use the target pseudo-class in CSS:
<html>
<head>
<style type="text/css">
div#test:target {
background-color: yellow;
}
</style>
…
