jquery-cluetip icon indicating copy to clipboard operation
jquery-cluetip copied to clipboard

tips responsive @media

Open rowilsonh opened this issue 10 years ago • 0 comments

html:

$('a.title').cluetip();
<a class="title" rel="ajax.html">
<a class="title2" href="ajax.html">

Css:

@media screen {
.title {display: block;}
.title2 {display: none;}
}

@media handheld {
.title {display: none;}
.title2 {display: block;}
}

There a better way? Thanks

rowilsonh avatar Aug 22 '14 21:08 rowilsonh