vote up 0 vote down star

Update: clarified question (I hope) Hi.

I'm developing a plugin in Wordpress and I'm outputting elements according to user privileges A and B.

In case of A, I ouput element "Foo".
In case of B, I output element "Bar".

Up till now, I haven't checked if an element exists before I try to retrieve the value. This of course gives me a javascript error in some browsers (like IE7).

I've looked at using the typeof() function:

if(typeof(element) == 'undefined') {
    //do something...
}

I'm also using jQuery. So one solution could be using this:

if ($("#mydiv").length > 0){
    // do something here
}

Using the above methods, makes me having to check each element before trying to retrieve any values.

The "ideal" solution would be to get values based on user privileges. E.g:

if (userPriv == A) {
    //get values from element 'Foo'
}

This way I can check once, and do the data gathering. The only solutions I can think of are setting the value of a hidden input element or use cookies.

<input type="hidden" id="userPriv" value="A" />

The other solution would be adding a value to the cookie.

setcookie("userPriv", "A");

Unfortunately, this last option gives me a warning message saying that cookie must be set in header (before html output). I think it's because I'm doing this in Wordpress.

I'm looking for opinions on which method is "the best way" to accomplis this.

flag

58% accept rate
I don't understand what your problem is. Is it accessing dom elements that may not exist? Is it getting user privileges in Wordpress? Is it testing for the existence of some dom elements as a way to measure user privileges? – Cédric Bertolini Jun 16 at 9:26
When I've answered you I was thinking about some certain problem, but after I'm looking at comments and on your update I'm not sure I understood your question correctly. Could you please clarify, what are you trying to check? And what exactly you are asking? – Artem Barger Jun 16 at 9:50
Sorry about that. I've updated the text now. Hope this is a bit clearer. – Steven Jun 16 at 10:25

2 Answers

vote up 3 vote down check

Forgive me if I'm missing something, but checking for a DOM element in javascript is usually pretty easy.

var elementA = document.getElementById('id_of_a');
var elementB = document.getElementById('id_of_b');
if (elementA) {
    //...
} else if (elementB) {
    //...
}

The key is the if statement. getElementById will return nothing null if the element is not found, which will evaluate to false in the if statement.


Alternatively, if you don't really want to check for existence of individual DOM elements, can you send the users priv in a hidden input and act on that? That's a cookie free way of sending values clientside. Something like (edited to have jQuery code instead)

<input type="hidden" id="userPriv" value="A" />
...

var priv = $('#userPriv').val();
if (priv == 'A') {
    //...
}

I'd still recommend checking for individual elements over checking a hidden input. It seems cleaner to me, more along the unobtrusive lines

link|flag
I could. But that would involve a lot of checks. I'm hoping I can check ONCE (against user creds) and then do the reading. – Steven Jun 16 at 9:07
getElementById return null, actually. – Cédric Bertolini Jun 16 at 9:23
@Cédric - nothing, null, nada, I get them mixed up :-) – Dan F Jun 16 at 9:27
If there's a way to know the exact value of the server-side "userPriv", I'd recommend using it over using the effect of "userPriv". You may misinterpret the effects, not the value. – Cédric Bertolini Jun 16 at 9:33
Thanks Dan. I actually tried the <input> solution this morning. I just wanted some feedback from you guys to see what was the best way. – Steven Jun 16 at 10:14
show 2 more comments
vote up 1 vote down

You can use object as associative array:

var map = new Object();
map[A.toString()] = new Foo();
map[B.toString()] = new Bar();

In that case is much simpler to check and you will avoid "spaghetti code".

link|flag

Your Answer

Get an OpenID
or

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