i have img tag used in website loads click tracking.
by using img tag, web browser automatically loads resources specified src attribute , related resources.
now problem is, cannot use img tag anymore still need achieve function. know html tags can same thing img does?
thanks
depending on type of image being used (.jpg, .png, .svg) use <object>
or <embed>
.
as 100pic mentions, it'd easier nest image in <div>
, have onclick
tracking happen on that.