Forum: JavaScript / DHTML / AJAX Oct 2nd, 2008 |
| Replies: 3 Views: 956 made some adjustments, probably not what you want to do with it but got it working. the problem was that in the beginning of your javascript function you are changing the display properties of some... |
Forum: JavaScript / DHTML / AJAX Aug 22nd, 2008 |
| Replies: 6 Views: 1,020 Ensure that your function and variable names are unique. |
Forum: JavaScript / DHTML / AJAX Aug 18th, 2008 |
| Replies: 6 Views: 740 Usually when you see something like this:
arrayName.item(0)
it is referring to something in the DOM, for example:
http://jacksleight.com/blog/2008/01/14/getelementsby/ |
Forum: JavaScript / DHTML / AJAX Aug 18th, 2008 |
| Replies: 3 Views: 2,257 very basic version but it should get you started:
<!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 Jul 23rd, 2008 |
| Replies: 21 Views: 3,427 try it now
oh good, ok
I do get a few javascript errors but they don't stop it from working though. |
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2008 |
| Replies: 21 Views: 3,427 The script that I posted for you works fine for me, you can see it here.
http://dev.ositnet.com/test.php |
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2008 |
| Replies: 21 Views: 3,427 Think it is suppose to be
lists/link_list.js,
external_image_list_url : "lists/image_list.js",
flash_external_list_url : "lists/flash_list.js"});
</script |
Forum: JavaScript / DHTML / AJAX Jul 22nd, 2008 |
| Replies: 21 Views: 3,427 is this line referencing the correct location?
<script language="javascript" type="text/javascript" src="js/tinymce/jscripts/tiny_mce/tiny_mce.js"></script> |
Forum: JavaScript / DHTML / AJAX Jul 22nd, 2008 |
| Replies: 21 Views: 3,427 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta... |
Forum: JavaScript / DHTML / AJAX Jul 22nd, 2008 |
| Replies: 21 Views: 3,427 click on this link: http://prdownloads.sourceforge.net/tinymce/tinymce_3_1_0_1.zip?download
In it you will find a folder called "tinymce". If you look in it you will find two folders, "examples"... |
Forum: JavaScript / DHTML / AJAX Jul 21st, 2008 |
| Replies: 7 Views: 1,883 first, get the "Web Developer" add on for firefox,
then go to http://www.i-spy360.com/spins/spin6/Spin360.html
and use the "Web Developer" option called "View Javascript" under the information tab.... |
Forum: JavaScript / DHTML / AJAX Jul 21st, 2008 |
| Replies: 21 Views: 3,427 I usually use tineMCE, which looks like it does exactly the same thing. If you want to do that I can help you with that, but chances are they have enough documentation and examples that you won't... |
Forum: JavaScript / DHTML / AJAX Jul 16th, 2008 |
| Replies: 4 Views: 2,559 adjusted the onmouseout function
<td background="images/button_main.gif" class="hand" onMouseOver="getCity('getButtons.php?city=<?php echo $city;?>');"... |
Forum: JavaScript / DHTML / AJAX Jul 15th, 2008 |
| Replies: 3 Views: 1,402 This is how you get the length of a string.
var stringlen = stringvarname.length;
BTW: its all html when it hits the browser |
Forum: JavaScript / DHTML / AJAX Jul 14th, 2008 |
| Replies: 8 Views: 1,693 I tested it and it works fine for me, so I'm thinking it may be an image formatting problem on top of the javascript error. |
Forum: JavaScript / DHTML / AJAX Jul 12th, 2008 |
| Replies: 2 Views: 803 It's just plain text either way, image type has nothing to do with it. I mean it's not like you are reconstructing the images, your just swapping text. |
Forum: JavaScript / DHTML / AJAX Jul 12th, 2008 |
| Replies: 2 Views: 2,207 try this:
var inputid = "up" + i;
var rowItem = document.createElement('<input type="text" id="' + inputid + '">');
and according to what I've read here, you need to provide valid html for... |
Forum: JavaScript / DHTML / AJAX Jul 12th, 2008 |
| Replies: 8 Views: 1,693 Think I made just one adjustment and it works now.
<html>
<head>
<title>swapimage</title>
</head>
<script>
var... |
Forum: JavaScript / DHTML / AJAX Jun 27th, 2008 |
| Replies: 13 Views: 2,221 I believe all of the below are open source:
http://www.fpdf.org/
http://www.gnuvox.com/pdf4php/
http://www.ros.co.nz/pdf/
I would probably go with www.fpdf.org myself, and I believe there is... |
Forum: JavaScript / DHTML / AJAX Jun 27th, 2008 |
| Replies: 13 Views: 2,221 Ya you are definitely going to want to generate these on the fly, that is unless you want to create thousands of pdfs manually.
Run this on your server to see if pdflib is installed.
... |
Forum: JavaScript / DHTML / AJAX Jun 26th, 2008 |
| Replies: 13 Views: 2,221 Do the pdfs already exist or are they actually going to dynamically generated? |
Forum: JavaScript / DHTML / AJAX Jun 26th, 2008 |
| Replies: 2 Views: 2,152 This will give you the basic functionality:
<!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 Jun 24th, 2008 |
| Replies: 2 Views: 813 I've never used that script but it sounds like this type of error:
I don't see <div>s that match up to these two lines:
Rounded("div#second","#EFF6F9","#9BD1FA"); ... |