Side navigation
#6613 closed bug (invalid)
Opened May 30, 2010 12:35PM UTC
Closed May 30, 2010 02:07PM UTC
Selector id not working
Reported by: | adudoc | Owned by: | |
---|---|---|---|
Priority: | Milestone: | 1.4.3 | |
Component: | unfiled | Version: | 1.4.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
I am using jquery-1.2.4.min.js. It seems whenever I try to use this to select an ID, it doesn't work. Here is my example.
<div>
<img id="t44" alt="Add Campaign" src="Add32.png"/>
</div>
<div id="t55">
<h4>Create New Ad Campaign</h4>
</div>
<script>
$('#t44').click(function () {
$('#t55').show();
});
</script>
Version of jquery is 1.4.2.