vote up 0 vote down star
2

I've got HTML code that roughly looks like this:

<li id="someid-11">

<img src="..." alt="alt" />
<h2><a href="somelink"> sometext </a>
    <span><a class="editcontent" href="?action=editme">Edit</a></span>
</h2>
<div id="11" class="content">
 <!-- // content goes here -->
 <div class="bottom_of_entry"> </div>

</li>

I'm using the a.editcontent to activate an edit-in-place method on div.content. My current selector looks like this

jQuery('a.editcontent').bind('click', (function(){
	jQuery(this).parent('span').parent('h2').next('.content').trigger('edit');
}

It works, but its ugly. There must be some better way to do that, right?

flag

Just a quick note that DOM IDs must start with a letter; thus id="11" will not work in many browsers. – Funka Jun 23 at 23:35

6 Answers

vote up 2 vote down check

I recommended the Sprintstar Solution. but if you don't like it, use this:

$("a.editcontent").click(function(){
    $(this).parents("h2").next(".content").trigger("edit");
});

If you have more that one "h2":

$("a.editcontent").click(function(){
    $(this).parents("h2:first").next(".content").trigger("edit");
});
link|flag
I'd recommend that you always be as specific as possible in your queries. If you want the first h2 ancestor, then always specify h2:first. It will let the search loop stop as soon as one is found, and is clearer for future coders who now know that you're definitely always working with one element. – nickf Jan 14 at 6:23
vote up 1 vote down

I agree with Sprintstart

var clickHandler = function (link) {
     $(link.data.action).trigger("edit");
}

$('a.editconent').bind('click', {action:'.content'}, clickHander);

Then you can be much more target about the jQuery statement which fires the edit event.

link|flag
vote up 1 vote down

Out of my head:

$("a.editcontent").click(function(){
    $(this).parents("h2").slice(0, 1).next(".content").trigger("edit");
});
link|flag
instead of .parents("h2").slice(0, 1), it'd be easier and more efficient to do .parents("h2:first") – nickf Dec 17 '08 at 14:04
vote up 4 vote down

I think using some meta-attributes would be a better solution.

<li id="someid-11">

<img src="..." alt="alt" />
<h2><a href="somelink"> sometext </a>
    <span><a rel="11" class="editcontent" href="?action=editme">Edit</a></span>
</h2>
<div id="11" class="content">
 <!-- // content goes here -->
 <div class="bottom_of_entry"> </div>

</li>

(Added the rel="11" to the link)

And then in JavaScript:

$( 'a.editcontent' ).click(function()
{   
    $( '#' + $(this).attr( 'rel' )).trigger( 'edit' );
});
link|flag
note that this will break (X)HTML validation since "11" is not a valid value for rel. (you decide how important that is for yourself). In any case, you can't have an id which starts with a number - that will break in IE. prefix it with an arbitrary string of letters. – nickf Jan 14 at 6:26
vote up 2 vote down

Would it not be better to store the id in the link, then on your hander, find the content div by id, and do your trigger? That way you're not tied to a specific hierarchy.

link|flag
vote up 1 vote down

You can probably use xpath to get from the A to the DIV in one go?

Edit: Apparently xpath selectors are no more in jquery (thanks to the guy in the comments for pointing this out)

link|flag
haven't xpath selectors been removed from the more recent versions of jQuery? – Wayne Austin Dec 17 '08 at 9:53
What's xpath ? :) (googling it now) – yoavf Dec 17 '08 at 10:18
oh ... looks like they have been removed yes! – benlumley Dec 17 '08 at 13:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.