I'm trying to access an element in MS CRM 2011 with the following id: account|NoRelationship|Form|B_GenerateInvoice-Large

I can see this element in the IE developer tools: enter image description here

Unfortunately I always get null when trying to find this element.

I've tried the following:

alert(document.getElementById('account|NoRelationship|Form|B_GenerateInvoice-Large'));
alert($("[id='account|NoRelationship|Form|B_GenerateInvoice-Large]").html());
alert($(jq("account|NoRelationship|Form|B_GenerateInvoice-Large")).html());  // jq() adds the '#' and escapes special characters
alert($("#account|NoRelationship|Form|B_GenerateInvoice-Large").html());
alert(document.getElementById("#account\\|NoRelationship\\|Form\\|B_GenerateInvoice-Large"));
alert($("#account\\|NoRelationship\\|Form\\|B_GenerateInvoice-Large").html());

These all fail to find the element.

Am I missing something obvious here?

Solution:

The javascript was inside an iframe while the element was outside of the iframe..

I did not manage to solve it.

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

The jQuery Manual on Selectors states:

If you wish to use any of the meta-characters ( such as !"#$%&'()*+,./:;<=>?@[]^`{|}~ ) as a literal part of a name, you must escape the character with two backslashes: \\. For example, if you have an element with id="foo.bar", you can use the selector $("#foo\\.bar"). The W3C CSS specification contains the complete set of rules regarding valid CSS selectors.

So try this one:

$('#account\\|NoRelationship\\|Form\\|B_GenerateInvoice-Large')...

jsFiddle Demo

EDIT: I have successfully tested my Fiddle in Chrome, Firefox 4, IE9, IE8 and IE7, it works fine.

link|improve this answer
1  
Good answer @bazmegakapa I didn't know that. I did a little looking around and it looks like there is someone talking about having a selector escape function which seems like a good idea. forum.jquery.com/topic/add-a-jquery-selector-escape-function – Alex Key May 25 '11 at 9:19
1  
the third alert uses a function jq() found on jquery.com which escapes these characters. I tried with your string and I still get a null. – Thomas Stock May 25 '11 at 9:22
1  
you can find the escape function here: docs.jquery.com/… – Thomas Stock May 25 '11 at 9:23
1  
thanks for the remark, I will investigate. I've just tried finding a parent element way up in the DOM tree and it didnt find anything either. I can do jQuery ajax calls etc in my piece of code so I'm sure jQuery is working fine.. bleh. I will certainly post here when I find the cause. Thanks a lot for your help. – Thomas Stock May 25 '11 at 9:41
1  
@Thomas Are you running the queries in the $(document).ready() handler? To be sure the DOM is up at the time you want to find something in it. – bažmegakapa May 25 '11 at 9:46
show 12 more comments
feedback

It may be a bug in browser, since HTML5 specification allows any character except spaces in id attribute

ID #

Any string, with the following restrictions:

must be at least one character long

must not contain any space characters

however, it is encrouaged not to put any weired character in id attribute, only number, letter and underscore there:)

link|improve this answer
Since HTML 5 is a draft, it can be argued that it isn't a bug, it is just something that hasn't been implemented yet. – Quentin May 25 '11 at 9:36
feedback

From the jQuery documentation:

If you wish to use any of the meta-characters ( such as !"#$%&'()*+,./:;<=>?@[]^`{|}~ ) as a literal part of a name, you must escape the character with two backslashes: \. For example, if you have an element with id="foo.bar", you can use the selector $("#foo\.bar").

So this should work:

alert($("#account\\|NoRelationship\\|Form\\|B_GenerateInvoice-Large").html());

And it does, indeed: http://jsfiddle.net/Cdz9w/

link|improve this answer
Isn't that what @bazmegakapa said? – T.J. Crowder May 25 '11 at 9:20
@T.J. It exactly is. He was faster. – András Szepesházi May 25 '11 at 9:22
thx for the jsfiddle link. This makes me think that the problem is CRM related. – Thomas Stock May 25 '11 at 9:25
feedback

What version of HTML is the page declaring that it's using? Because that's a valid HTML5 id, but it's an invalid HTML4.01 and earlier id. (It's also an invalid CSS id, which is vaguely relevant if you use something like jQuery to look it up, as jQuery uses CSS selectors.)

The fiddle in @bazmegakapa's answer works for me on Chrome, but perhaps your page is declaring a different version of HTML, or perhaps a less-advanced browser doesn't like it, etc.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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