Hover Over Menu - Can this be done with C# or is it JavaScript

  • Thread starter Thread starter Empire City
  • Start date Start date
E

Empire City

Hover Over Menu - Can this be done with C# or is it JavaScript? If JavaScript what would be the closest way to do something like this in C#, such as a drop down list box? If JavaScript is best does anyone have a JavaScript link that could help me get started on this.
 
Are you talking about an HTML page?

If so keep this in mind:

- JavaScript runs inside the browser, and never on the web server *
- C# runs on the web server, never inside the browser

If you want something to happen inside an HTML page while it is running on
the browser, you need to use JavaScript

Enter the words

JavaScript hover

into Google and you will get a ton of links.

Eric

* Actually, some people do run JavaScript on the server side, but it's
uncommon in a MS development environment and likely not relevant to your
question.

Hover Over Menu - Can this be done with C# or is it JavaScript? If
JavaScript what would be the closest way to do something like this in C#,
such as a drop down list box? If JavaScript is best does anyone have a
JavaScript link that could help me get started on this.
 
Back
Top