01.
<html>
02.
<head>
03.
<title>ThaiCreate.Com jQuery Tutorials</title>
04.
<script type=
"text/javascript"
src=
"jquery-1.6.4.js"
></script>
05.
<script type=
"text/javascript"
>
06.
07.
$(document).ready(
function
(){
08.
09.
$(
'div[id]'
).one(
'click'
,
function
(){
10.
var
idString = $(
this
).text() +
' = '
+ $(
this
).attr(
'id'
);
11.
$(
this
).text(idString);
12.
});
13.
14.
});
15.
</script>
16.
</head>
17.
<body>
18.
19.
<div>no id</div>
20.
<div id=
"hey"
>
with
id</div>
21.
22.
<div id=
"there"
>has an id</div>
23.
<div>nope</div>
24.
25.
</body>
26.
</html>