Building a photo gallery using ImageMap control
Since photo galleries can be built using many different methods, let's make use of the ASP.NET ImageMap
control in this recipe to build a gallery. The following table lists the summary of constructs used in this example:
Construct |
Type |
Description |
---|---|---|
|
jQuery selector |
This selects an element based on its ID. |
|
jQuery selector |
This selects all elements with the specified HTML tag. |
|
jQuery selector |
This selects an element with the specified attribute equal to the |
|
jQuery event |
This is fired when you click on an element. It corresponds to the JavaScript |
|
jQuery method |
This prevents the default action of the event from being triggered. |
|
jQuery method |
This hides the matched elements. |
|
jQuery event binder |
This binds event handlers for |
|
jQuery event binder |
This... |