<%= link_to(image_tag 'img.jpg'), controller_view_path, title: "Tooltip Text" %>
<!DOCTYPE html> <html lang="en-us"> <head> <meta content="text/html" charset="utf-8"> <title>Sample HTML Page</title> </head> <body> <h1>Sample HTML Page</h1> <p>This is the first paragraph.</p> <p>This is the <span style="color:red">second</span>.</p> </body> </html>
$("p").css("font-style", "italic")
Selector | Meaning |
---|---|
$("*") | All elements in the DOM. |
$("h2") | All h2 tags elements. |
p("#firstname") | The element with id="firstname". |
$(".field") | All elements having class="field". |
$("p:first") | The first paragraph. |
$("p:last") | The last paragraph. |
<script type="text/javascript" src="http:/code.jquery.com/jquery-1.5.min.js"> </script>