vote up 0 vote down star

Does anybody know how to get a velocity macro to run when it's prepended by an Octothorpe?

I have a velocity macro called #macro(getUniqueID $id)

And I want to use it to spit out an id to be used by jQuery.find() which uses CSS selectors which means that the id needs to be prepended by another octothorpe.

jquery.find("##getUniqueID('id')")
dosn't work

nor does

#set($id = #getUniqueID('id')) jquery.find(#$id)

nor does

#set($id = '#getUniqueID("id")') jquery.find(#$id)

nor

#set($id = "#getUniqueID('id')") jquery.find(#$id)

flag

2 Answers

vote up 0 vote down

From my experiments the following escaping should work for you:

<h2 id="#octothorpe">foo</h2>

$('#\\#octothorpe');
> [h2##octothorpe]
link|flag
vote up 0 vote down

If you're trying to find a div by the id, you would need to do jQuery.find('#'+id) vs #id. Nevertheless, you can probably use the \ to escape your second hash symbol.

link|flag

Your Answer

Get an OpenID
or

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