FadeTo
Adjust the opacity of the matched elements.
<div>
<input type="button" value="Run" id="btnRunFadeto" />
<div id="divToFadeto">
<img style="background-color:black"
src="images/jquery4php-logo.jpg"
width="215" height="53" />
</div>
<?php
echo
YsJQuery::newInstance()
->onClick()
->in('#btnRunFadeto')
->execute(
YsJQuery::fadeTo()
->in('#divToFadeto')
->duration(YsJQueryConstant::SLOW)
->opacity(0.33)
->callback('alert("Fade to opacity 0.33")')
)
?>
</div>

Support requests, bug reports, and off-topic comments will be deleted without warning.