HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery :image Selector</h1> <input type="image" src="apple.png" width="50" height="50"> <script> $(document).ready(function(){ $("input:image").css("opacity","0.5"); }); </script> </body> </html>
OUTPUT
×

Save as Private