Search Results

Showing results 1 to 29 of 29
Search took 0.01 seconds.
Search: Posts Made By: mschroeder ; Forum: JavaScript / DHTML / AJAX and child forums
Forum: JavaScript / DHTML / AJAX 25 Days Ago
Replies: 6
Views: 612
Posted By mschroeder
This is not an IE issue.
Get yourself Firebug for Firefox and the IE Developer Toolbar for IE7 -- maybe 6 and 8?

When I run through the example on firefox it is not removing the li tags from the...
Forum: JavaScript / DHTML / AJAX Jun 17th, 2009
Replies: 1
Views: 785
Posted By mschroeder
I think I have achieved what you were describing. There is some consolidation that could occur as there is minor repetitive code.


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"...
Forum: JavaScript / DHTML / AJAX Jun 12th, 2009
Replies: 16
Views: 2,939
Posted By mschroeder
@essential

I may be wrong, but wouldn't the onblur event mean the field needs to lose focus?

If its auto-submitting the form then it should probably wait for a delay indicating the user has...
Forum: JavaScript / DHTML / AJAX May 21st, 2009
Replies: 4
Solved: Using jQuery
Views: 610
Posted By mschroeder
They are two different technologies:

php is server-side and will be executed on the server with the results being displayed to the user.

jquery is client-side and will be executed in the...
Forum: JavaScript / DHTML / AJAX May 15th, 2009
Replies: 9
Views: 2,835
Posted By mschroeder
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html lang="en">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7">...
Forum: JavaScript / DHTML / AJAX Apr 6th, 2009
Replies: 6
Views: 680
Posted By mschroeder
There are some fine Ajax/Javascript libraries that exists:

http://jquery.com/
http://www.prototypejs.org

Are two very prominent ones, but there are countless others.
They all have Ajax...
Forum: JavaScript / DHTML / AJAX Apr 6th, 2009
Replies: 6
Views: 680
Posted By mschroeder
Forum: JavaScript / DHTML / AJAX Mar 11th, 2009
Replies: 17
Views: 1,600
Posted By mschroeder
Can you link to the W3C DOM Specs where you found that?

Dom Model 1
http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-22445964
...
Forum: JavaScript / DHTML / AJAX Mar 10th, 2009
Replies: 17
Views: 1,600
Posted By mschroeder
nav33n: well that rules out the <b></b> tags then. haha. i've had issues with IE and FF going from one to the other and having broken functionality when I have a broken tag in the javascript. When I...
Forum: JavaScript / DHTML / AJAX Mar 10th, 2009
Replies: 17
Views: 1,600
Posted By mschroeder
Before i propose any other solutions, did you try removing the <b></b> tags from this line: <input type="checkbox" name="chkRecipeBook" id="chkRecipeBook"...
Forum: JavaScript / DHTML / AJAX Mar 9th, 2009
Replies: 17
Views: 1,600
Posted By mschroeder
Does all that javascript do is show and hide a DIV?
Forum: JavaScript / DHTML / AJAX Feb 22nd, 2009
Replies: 2
Views: 783
Posted By mschroeder
Can i ask what your implementation of this is? Hoe are you using it, and why do you need to display a floating div in front of the page to tell the user it is loading?

I'm not criticizing or...
Forum: JavaScript / DHTML / AJAX Feb 22nd, 2009
Replies: 1
Views: 431
Posted By mschroeder
I would like a double cheese burger and a large shake, and yes, I do want fries with that...

I will trade that for some code, do you take code?


for($i=1; $i>0; $i++)
{
alert( 'Here is some...
Forum: JavaScript / DHTML / AJAX Feb 21st, 2009
Replies: 6
Views: 1,621
Posted By mschroeder
indeed, that was going to be the suggestion I made if you didn't find my previous solution suitable.

I saw a lot of issues regarding that while searching for any workarounds or ways to deal with...
Forum: JavaScript / DHTML / AJAX Feb 20th, 2009
Replies: 6
Views: 3,561
Posted By mschroeder
Manipulating the user's screen in anyway is something that should be avoided at all costs. Imagine you were to visit a site, that has a layout designed for 640 x 480, but instead of showing you the...
Forum: JavaScript / DHTML / AJAX Feb 20th, 2009
Replies: 6
Views: 1,621
Posted By mschroeder
Why does the page value need to be passed in the url?
Will it always be the same as the hidden field view?

I ask because i see $_GET['page'] & $_POST['view'] being set to the same value.

Here...
Forum: JavaScript / DHTML / AJAX Feb 19th, 2009
Replies: 4
Views: 1,351
Posted By mschroeder
What server side language are you working with (PHP/ASP/other)?
What type of database are you working with ( MySQL/MSSQL/SQLite)?

Now i personally prefer to work with jQuery so i'm going to link...
Forum: JavaScript / DHTML / AJAX Feb 19th, 2009
Replies: 1
Views: 1,913
Posted By mschroeder
I believe you're talking about a "popup" that is more of a modal window then a true popup. This would mean creating a div that is positioned above the page and floats over everything else.

Here's...
Forum: JavaScript / DHTML / AJAX Feb 19th, 2009
Replies: 1
Views: 2,446
Posted By mschroeder
Here is a quick jQuery example, the alert shows the top and left position of the image. It also gives you a chance to actually see the javascript set the new position. Let me know if you need any...
Forum: JavaScript / DHTML / AJAX Feb 18th, 2009
Replies: 1
Views: 473
Posted By mschroeder
I see three options that you could pursue but since you posted this in the Javascript forum I'll assume you are not looking for a serverside solution using php etc., correct me if I'm wrong.

With...
Forum: JavaScript / DHTML / AJAX Feb 18th, 2009
Replies: 4
Views: 1,351
Posted By mschroeder
That would be an AJAX auto complete/auto suggest feature. Have you even tried looking for examples (http://lmgtfy.com/?q=ajax%2C+autocomplete%2C+php)?
Forum: JavaScript / DHTML / AJAX Feb 17th, 2009
Replies: 2
Views: 458
Posted By mschroeder
After taking a quick look at their javascript it looks like they're simply overlaying a transparent image over the base map image when you hover a particular link.

here is the link to the file...
Forum: JavaScript / DHTML / AJAX Feb 17th, 2009
Replies: 9
Views: 1,149
Posted By mschroeder
rag:

This example uses jQuery to check all the checkboxes on page load.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">...
Forum: JavaScript / DHTML / AJAX Feb 15th, 2009
Replies: 2
Views: 773
Posted By mschroeder
The code you posted is PHP not javascript. Where is the AJAX?
Forum: JavaScript / DHTML / AJAX Feb 14th, 2009
Replies: 12
Views: 6,242
Posted By mschroeder
I built this on the jQuery library, its a very simple example with a lot of duplicated code that could be turned into a function or two. Hopefully some people with some older browsers can verify that...
Forum: JavaScript / DHTML / AJAX Feb 13th, 2009
Replies: 9
Views: 1,149
Posted By mschroeder
are you trying to toggle every check box on the page on and off? or just one checkbox?
Forum: JavaScript / DHTML / AJAX Feb 9th, 2009
Replies: 7
Views: 2,064
Posted By mschroeder
Try this example out. This uses jQuery to grab the css properties you want. Even on elements that do not have inline styles.

This is what matters, it serves the jquery library from googles cdn,...
Forum: JavaScript / DHTML / AJAX Feb 5th, 2009
Replies: 4
Views: 611
Posted By mschroeder
how about using some jQuery to simplify the code even further.


<html>
<head>
<title>test</title>
<!-- Let GOOGLE serve the ajax library via their CDN -->
<script type="text/javascript"...
Forum: JavaScript / DHTML / AJAX Jan 9th, 2009
Replies: 1
Views: 1,084
Posted By mschroeder
use the paste from word functionality provided in TinyMCE, It may need configured if you dont have an icon that looks like a clipboard and a word icon.
Showing results 1 to 29 of 29

 


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

©2003 - 2009 DaniWeb® LLC