Let's say I want that every time the user click any link an alert pops up that says "hohoho".
Do I need to add onclick="alert('hohoho')" to every link or can I set this with CSS so that it works with every link?
|
|
|||
|
|
|
You can't do it with just CSS, but you can do it with Javascript, and (optionally) jQuery. If you want to do it without jQuery:
And to do it without jQuery, and only on a specific class (ex:
If you are okay with using jQuery, then you can do this for all anchors:
And this jQuery snippet to only apply it to anchors with a specific class:
|
|||||||||||
|
|
|||
|
|
|
It can't be done via CSS as CSS only changes the presentation (e.g. only Javascript can make the alert popup). I'd strongly recommend you check out a Javascript library called jQuery as it makes doing something like this trivial:
|
|||
|
|
|
You could do it with jQuery.
|
|||||||||||
|
|
Many 3rd party JavaScript libraries allow you to select all elements that have a CSS class of a particular name applied to them. Then you can iterate those elements and dynamically attach the handler. There is no CSS-specific manner to do this. In JQuery, you can do:
|
|||
|
|
