Is it safe to use :after-selector with jquery= -
this question has answer here:
i want trigger function when clicking :after
for example
.foo:after{ content: "read more"; } $('foo:after').click(myfunction); will cause fuzz?
you cannot detect or trigger events on pseudo-elements not part of document object model.
Comments
Post a Comment