In the code below, the id isn't found is because you need to append the new element to the DOM.
Below is working model of what I think you want:
http://jsbin.com/EGUnOse/2/edit
On Sunday, October 20, 2013 10:50:55 PM UTC-4, pame...@aol.com wrote:
-- Below is working model of what I think you want:
http://jsbin.com/EGUnOse/2/edit
On Sunday, October 20, 2013 10:50:55 PM UTC-4, pame...@aol.com wrote:
Hi:
Now that's weird, OK, so now when I try to increment the count get the same issue not found,
var itemCount = 0;
var newElement = document.createElement('div');document.body.appendChild(newElement); // <-- Here, new element is appended to the BODY tag.
// Once part of the DOM, document.getElementById(id) should find it.
newElement.className="dialog-form";
newElement.setAttribute("id", 'updateCC' + itemCount);
itemCount++; //Increment the count
or
itemCount += 1;
Thanking You In Advance;
PH
newElement.setAttribute("style","display:none;");
On Thursday, October 17, 2013 8:00:57 PM UTC-5, pame...@aol.com wrote:Hello:
I have a question, I have been working on this all day with setAttribute() method. The research and reading I have the done the
below code should work. I ran into an issue which forces me to have to create unique ids for an element.
var itemCount =0;
var newElement = document.createElement('div');
newElement.setAttribute("id", 'updateCC ); //This works fine when I do the following test
if(document.getElementById('updateCC')){
//do stuff
alert("Found it updateCC" );
}
else {
alert("Not found updateCC" );
}
Found
but when I do the following
newElement.setAttribute("id", 'updateCC' + itemCount);
The previous test fails, I even tried
if(document.getElementById('updateCCD' + itemCount)){
//do stuff
alert("Found it updateCC" + itemCount);
}
else {
alert("Not found updateCC" + itemCount);
}
It will give me the count but it still fails saying Not found
My documents(books) and Google searches, it should work.
What am I missing here.
Thanking You in Advance, I work on this all day and it has put me at a stand still.
PH
You received this message because you are subscribed to the Google Groups "JavaScript Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email to javascript-information+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.