Search Results

Showing results 1 to 40 of 93
Search took 0.01 seconds.
Search: Posts Made By: R0bb0b ; Forum: JavaScript / DHTML / AJAX and child forums
Forum: JavaScript / DHTML / AJAX Oct 5th, 2008
Replies: 3
Views: 965
Posted By R0bb0b
Hey, join the club. :P
Forum: JavaScript / DHTML / AJAX Oct 2nd, 2008
Replies: 3
Views: 965
Posted By R0bb0b
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 Sep 27th, 2008
Replies: 3
Views: 2,670
Posted By R0bb0b
Only things that can accept focus can receive focus, which would be form objects like text boxes, radio buttons etc... and hyperlinks. You should be able to do it with the focus() function.
Forum: JavaScript / DHTML / AJAX Sep 27th, 2008
Replies: 1
Views: 915
Posted By R0bb0b
Here's one option:
http://www.ajax-cross-domain.com/, which might give you access to that data, but if they don't have some type of API, it's going to be tough to interact with their site. I do...
Forum: JavaScript / DHTML / AJAX Aug 22nd, 2008
Replies: 6
Views: 1,025
Posted By R0bb0b
Ensure that your function and variable names are unique.
Forum: JavaScript / DHTML / AJAX Aug 18th, 2008
Replies: 6
Views: 747
Posted By R0bb0b
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,289
Posted By R0bb0b
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 29th, 2008
Replies: 10
Views: 3,192
Posted By R0bb0b
javascript will not work in that page. It's just text that you are receiving from an ajax call. You can get the output from the ajax call, then paste it into your document including the javascript...
Forum: JavaScript / DHTML / AJAX Jul 29th, 2008
Replies: 10
Views: 3,192
Posted By R0bb0b
right, exactly. You have a combination insert/update statement there. You need to go with one or the other. But we'll come back to that, for now comment everything out and echo "hello world", to...
Forum: JavaScript / DHTML / AJAX Jul 29th, 2008
Replies: 10
Views: 3,192
Posted By R0bb0b
start very simple. On the page that you are calling, just echo "hello world" and start there. If that doesn't work then post your ajax function(s). Otherwise, post the code on the page that you...
Forum: JavaScript / DHTML / AJAX Jul 28th, 2008
Replies: 2
Views: 7,382
Posted By R0bb0b
Found a solution:

function html_entity_decode(str)
{
try
{
var tarea=document.createElement('textarea');
tarea.innerHTML = str; return tarea.value;...
Forum: JavaScript / DHTML / AJAX Jul 28th, 2008
Replies: 2
Views: 7,382
Posted By R0bb0b
Found this online and it seems like they all use this concept.

function html_entity_decode(str)
{
//jd-tech.net
var tarea=document.createElement('textarea');
tarea.innerHTML =...
Forum: JavaScript / DHTML / AJAX Jul 28th, 2008
Replies: 2
Views: 7,382
Posted By R0bb0b
anybody have a browser compatible html entity decoding function?
Forum: JavaScript / DHTML / AJAX Jul 28th, 2008
Replies: 7
Views: 921
Posted By R0bb0b
If you can get something to work in firefox, with few exceptions, chances are it will work in most browsers. Once you get it working in firefox, then adjust it for ie. Once that is done then you...
Forum: JavaScript / DHTML / AJAX Jul 24th, 2008
Replies: 7
Views: 921
Posted By R0bb0b
This is the only one that I have ever heard of
http://dean.edwards.name/IE7/
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2008
Replies: 7
Views: 921
Posted By R0bb0b
This should do it.
http://javascript.about.com/library/blbrsdet.htm
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2008
Replies: 21
Views: 3,474
Posted By R0bb0b
Right.
Amazing that it is free.
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2008
Replies: 21
Views: 3,474
Posted By R0bb0b
This is kind of cool, I am reposting it back into the textarea and the page so you can kind of edit the content of the page. I could have so much fun with this.
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2008
Replies: 21
Views: 3,474
Posted By R0bb0b
There you go.
Forum: JavaScript / DHTML / AJAX Jul 23rd, 2008
Replies: 21
Views: 3,474
Posted By R0bb0b
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,474
Posted By R0bb0b
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,474
Posted By R0bb0b
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,474
Posted By R0bb0b
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,474
Posted By R0bb0b
<!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,474
Posted By R0bb0b
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: 6
Views: 1,007
Posted By R0bb0b
Here is a very basic functionality. My opinion, if you intend to really do anything with this you have quite a learning curve ahead of you and probably should dive in head first.

<!DOCTYPE html...
Forum: JavaScript / DHTML / AJAX Jul 21st, 2008
Replies: 7
Views: 1,970
Posted By R0bb0b
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: 10
Views: 1,477
Posted By R0bb0b
maybe you could do something like this:
http://thedailywtf.com/Comments/Multithreaded-PHP-.aspx

This top post explains one way an individual went about multi-threading using PHP.
Forum: JavaScript / DHTML / AJAX Jul 21st, 2008
Replies: 10
Views: 1,477
Posted By R0bb0b
So what you are saying is that the server will not respond to a redirect request until the PDF is complete?
Forum: JavaScript / DHTML / AJAX Jul 21st, 2008
Replies: 6
Views: 668
Posted By R0bb0b
I don't understand what you are saying but let me give you a simple example:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
Forum: JavaScript / DHTML / AJAX Jul 21st, 2008
Replies: 6
Views: 668
Posted By R0bb0b
"=" overwrites and "+=" appends.
Forum: JavaScript / DHTML / AJAX Jul 21st, 2008
Replies: 3
Views: 1,073
Posted By R0bb0b
There are numerous ways you can do it. You can have one variable specifically for the previous value. So just before you assign a new value to the textbox, assign the current value that is in the...
Forum: JavaScript / DHTML / AJAX Jul 21st, 2008
Replies: 6
Views: 668
Posted By R0bb0b
document.getElementById("element id").innerHTML += "table data";


are you using "=" instead of "+="?
Forum: JavaScript / DHTML / AJAX Jul 21st, 2008
Replies: 21
Views: 3,474
Posted By R0bb0b
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 20th, 2008
Replies: 6
Views: 1,007
Posted By R0bb0b
I ran into this function somewhere on the internet, I forget where, and kind of modified it use a textarea element ID

//Insert tag into text area or box
function wrapTag(text1, text2, elementID)...
Forum: JavaScript / DHTML / AJAX Jul 20th, 2008
Replies: 11
Views: 2,138
Posted By R0bb0b
use the concept at this url
http://www.w3schools.com/js/js_form_validation.asp
in conjunction with this url
http://developer.apple.com/internet/webcontent/validation.html
Forum: JavaScript / DHTML / AJAX Jul 20th, 2008
Replies: 6
Views: 1,007
Posted By R0bb0b
are you talking about something like a wysiwyg editor?
Forum: JavaScript / DHTML / AJAX Jul 19th, 2008
Replies: 4
Views: 805
Posted By R0bb0b
its just a hidden div
<div style="display:none" id="divlogin"><!-- login content here --></div>
you can change the display value with

document.getElementById("divlogin").style.display="none";...
Forum: JavaScript / DHTML / AJAX Jul 19th, 2008
Replies: 2
Views: 1,419
Posted By R0bb0b
Don't know how reliable it is but
http://www.dcs.uwaterloo.ca/~anderson/JavaScript/ex_load_unload.html
Forum: JavaScript / DHTML / AJAX Jul 19th, 2008
Replies: 10
Views: 3,192
Posted By R0bb0b
this will give you everything you need to know
http://www.w3schools.com/Ajax/Default.Asp
Showing results 1 to 40 of 93

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC