Forum: JavaScript / DHTML / AJAX Mar 14th, 2009 |
| Replies: 4 Views: 1,142 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: 1 Views: 594 i found it guys, it took a little long though here is the example that i created.
mainpage.htm :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"... |
Forum: JavaScript / DHTML / AJAX Oct 17th, 2008 |
| Replies: 2 Views: 1,127 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 + ')'; |