Forum: JavaScript / DHTML / AJAX Sep 22nd, 2009 |
| Replies: 7 Views: 506 |
Forum: JavaScript / DHTML / AJAX Sep 21st, 2009 |
| Replies: 7 Views: 506 |
Forum: JavaScript / DHTML / AJAX Sep 20th, 2009 |
| Replies: 7 Views: 506 dont worry most users with one posts are of "post and run" type. he will probably never come back, and when he wants to come back, he will create another user as he already forgot his credentials. |
Forum: JavaScript / DHTML / AJAX Sep 17th, 2009 |
| Replies: 7 Views: 506 document.style.cursor = "cursorTypeName"; |
Forum: JavaScript / DHTML / AJAX Sep 1st, 2009 |
| Replies: 3 Views: 373 |
Forum: JavaScript / DHTML / AJAX Sep 1st, 2009 |
| Replies: 3 Views: 373 there are two built in functions in javascript : setTimeout and setInterval check them out there are milions of examples out web. |
Forum: JavaScript / DHTML / AJAX Aug 19th, 2009 |
| Replies: 9 Views: 670 Thanks for taking me into consideration :) |
Forum: JavaScript / DHTML / AJAX Aug 19th, 2009 |
| Replies: 9 Views: 670 i dont think he is looking for such a processor consuming way of deleting the memory. i think delete keyword works better for his needs. or basically setting the array to null. |
Forum: JavaScript / DHTML / AJAX Aug 19th, 2009 |
| Replies: 9 Views: 670 wow i have created big javascript applications so far and yet i have never needed to delete something from memory. why do you need it? |
Forum: JavaScript / DHTML / AJAX Jun 18th, 2009 |
| Replies: 5 Views: 549 why didnt you post it as a snippet? |
Forum: JavaScript / DHTML / AJAX Jun 3rd, 2009 |
| Replies: 4 Views: 577 it is because in xml, nodes can either be terminal or not. when you specify a src attribute for a script tag, it becomes a terminal node which means you can not add any child to it, when you add a... |
Forum: JavaScript / DHTML / AJAX May 19th, 2009 |
| Replies: 4 Views: 364 if you are creating an application for internet, it is better to use javascript that is supported on all common browsers. dont use just firefox or internet explorer specific javascript objects. |
Forum: JavaScript / DHTML / AJAX Mar 15th, 2009 |
| Replies: 8 Views: 1,687 here is the working version for you, i set the table borders for you to see it clearly.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"... |
Forum: JavaScript / DHTML / AJAX Mar 15th, 2009 |
| Replies: 8 Views: 1,687 can you please post the entire working html page? |
Forum: JavaScript / DHTML / AJAX Mar 14th, 2009 |
| Replies: 4 Views: 1,184 i think you want something like this :
htmlpage.htm :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html... |
Forum: JavaScript / DHTML / AJAX Mar 5th, 2009 |
| Replies: 3 Views: 678 BimanD, why dont you mark this thread as solved? |
Forum: JavaScript / DHTML / AJAX Nov 26th, 2008 |
| Replies: 6 Views: 2,314 there is a builtin javascript array.push method, why dont you just use it? iterate through the second array using a for loop, push all the elements to the first array, then call the sort method in... |
Forum: JavaScript / DHTML / AJAX Oct 17th, 2008 |
| Replies: 2 Views: 1,140 if you put the whole thing in ' ' , it will be treated as string literal, you should have to concatenate the string literals and the variables as follows:
'rbg(' + r + ',' + g + ',' + b + ')'; |
Forum: JavaScript / DHTML / AJAX Feb 13th, 2008 |
| Replies: 11 Views: 3,993 I used setTimeout and it works both in ie and ff, www.altivi.com/shop go to the bottom of the page check if the lines get highlighted line by line. If it displays correctly, then this will be a proof... |
Forum: JavaScript / DHTML / AJAX Feb 12th, 2008 |
| Replies: 11 Views: 3,993 instead of accessing the images as collection items, use document.getElementById('imageID')
i dont know of opera but this works both in ie and firefox. Also since you are accessing the collection... |