Hi guys, i currently have a page which has lots of boxes with different data in them like this:
and i want to grab the value which is inside the time class div and pass it to the popup box.HTML Code:<div class="box"> <div class="box_name"> Test Name </div> <div class="time"> 12:45 </div> <div class="message"> A message </div> <a href="#" id="button">View Content</a> </div>
currently this gets the value:
but because the .time class is used on each box it always passes the content from the first box on the page.PHP Code:$('#button').click(function() {
var time = $('.time').html();
is there no way to implement "$this" into the function so it gets the time value only from the box which was clicked.
im stuck.
hope that made sence
David


Reply With Quote
Bookmarks