Forum: JavaScript / DHTML / AJAX 9 Hours Ago |
| Replies: 8 Views: 171 |
Forum: JavaScript / DHTML / AJAX 1 Day Ago |
| Replies: 3 Views: 90 |
Forum: JavaScript / DHTML / AJAX 1 Day Ago |
| Replies: 3 Views: 90 Re: Redirects http://domain to http://www.domain You can do it this way... Simply insert this bits of code inside the head section of your default page...
<script type="text/javascript">
<!--
/* To ensure that it will be loaded with appropriate... |
Forum: JavaScript / DHTML / AJAX 1 Day Ago |
| Replies: 2 Views: 99 |
Forum: JavaScript / DHTML / AJAX 1 Day Ago |
| Replies: 8 Views: 171 |
Forum: JavaScript / DHTML / AJAX 3 Days Ago |
| Replies: 2 Views: 186 |
Forum: JavaScript / DHTML / AJAX 4 Days Ago |
| Replies: 3 Views: 444 Re: window.confirm problem Am not sure if this what you need. But this wil help you to get familiar with confirm boxes. Feel free modify this script according to your needs...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0... |
Forum: JavaScript / DHTML / AJAX 4 Days Ago |
| Replies: 4 Views: 1,364 |
Forum: HTML and CSS 5 Days Ago |
| Replies: 4 Views: 185 Re: help for compliance css for ie7 and firefox3 Conclusion to the issue regarding ie behavior. As we know IE has a strange way of doing things. It doesn't understand the min-width and min-height commands, but instead interprets width and height as... |
Forum: JavaScript / DHTML / AJAX 5 Days Ago |
| Replies: 3 Views: 290 Re: div show/hide If you have a floating elements next to -->
document.getElementById ("divid");
just simply add this up -->
document.getElementById ("divid").style.display="block";
document.getElementById... |
Forum: JavaScript / DHTML / AJAX 5 Days Ago |
| Replies: 1 Views: 221 |
Forum: JavaScript / DHTML / AJAX 5 Days Ago |
| Replies: 1 Views: 213 |
Forum: JavaScript / DHTML / AJAX 5 Days Ago |
| Replies: 1 Views: 259 Re: javascript basic: Hope you'll enjoy my simple demo, on how to get around with prompt boxes. Good day...
<html>
<head>
<title><!--Sample--></title>
<script type="text/javascript">
<!--
function abc()
{ var validValue... |
Forum: HTML and CSS 5 Days Ago |
| Replies: 8 Views: 557 Re: Firefox floating div problem Maybe this would help. Try to use the css hack to fix rendering problem. As we can see to it, that in pre-IE browsers on PC, where by the border and padding are included in the width of an element,... |
Forum: HTML and CSS 6 Days Ago |
| Replies: 4 Views: 185 Re: help for compliance css for ie7 and firefox3 CSS-based websites to look the same across all browsers can often be difficult. Many of the problems however lie with Internet Explorer implementing CSS commands differently to other, more standards... |
Forum: HTML and CSS 6 Days Ago |
| Replies: 7 Views: 239 Re: Text links underneath images Here's what you need. I've added some span elements to control the portion of the text. Hope this will help you up. Enjoy
<html>
<head>
<title></title>
<style type="text/css">
.cards {
width:... |
Forum: JavaScript / DHTML / AJAX 8 Days Ago |
| Replies: 3 Views: 373 Re: create and append div to body tag Here's a simple demo, to get you started!
<html>
<head>
<title><!--Sample--></title>
<script language="JavaScript"type="text/javascript">
<!--
function createDiv()
{ var _body =... |
Forum: JavaScript / DHTML / AJAX 19 Days Ago |
| Replies: 3 Views: 552 Re: A text hiperlink on image Javasript wont be necessary for this one. CSS wil do fine and here's the actual code and along with your image. Just dont forget to polish the styles according to your... |
Forum: JavaScript / DHTML / AJAX 19 Days Ago |
| Replies: 1 Views: 394 Re: Javascript onclick events problem Am not sure if this is what you need.
<!-- Assuming that this the targeted frame in your page -->
<iframe id="frame1" src="myPage.html" width="700" height="700"></iframe>
<FORM><INPUT... |
Forum: JavaScript / DHTML / AJAX 19 Days Ago |
| Replies: 1 Views: 401 |
Forum: JavaScript / DHTML / AJAX Oct 8th, 2008 |
| Replies: 2 Views: 667 Re: Text, Textboxes, and One BIG Mess It's better if we will use the onchange event for this function!
Here's the code:
<html>
<head>
<title><!-- Sample --></title>
<script type="text/javascript">
<!--
function editBox(id,name,e) |
Forum: JavaScript / DHTML / AJAX Oct 4th, 2008 |
| Replies: 2 Views: 657 Re: Javascript Not Working in IE7 Simply add the following lines in your code...
//Additional lines starts here -->
if (document.all && !document.layers) {
document.all.linkout.href = urlout;
document.all.linkout2.href = urlout; }... |
Forum: JavaScript / DHTML / AJAX Oct 4th, 2008 |
| Replies: 3 Views: 507 Re: Small JavaScript Error Here you go!
Hope that this will solved the issue...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type"... |
Forum: JavaScript / DHTML / AJAX Oct 4th, 2008 |
| Replies: 3 Views: 507 Re: Small JavaScript Error Here you go!
Hope that this will solved the issue...
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type"... |
Forum: JavaScript / DHTML / AJAX Oct 2nd, 2008 |
| Replies: 3 Views: 622 Re: Form Validation-Alert box And dont forget to remove your old script and icluding all attached events' in your form!
<form name="contact" method="post" action=""
onSubmit="return validateForm(contact);">
<input... |
Forum: JavaScript / DHTML / AJAX Oct 2nd, 2008 |
| Replies: 3 Views: 622 Re: Form Validation-Alert box Simply Insert this inside the <head> section of your page!
<script type="text/javascript">
<!--
var thisName = /^[A-Za-z]{3,50}$/
var validEmail = /^(\w+[\-\.])*\w+@(\w+\.)+[A-Za-z]+$/;
var zip... |
Forum: JavaScript / DHTML / AJAX Sep 30th, 2008 |
| Replies: 2 Views: 445 Re: non-functioning Function - HELP! Here you have it!
I've done a lite modification in your code!
<!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 Sep 27th, 2008 |
| Replies: 3 Views: 1,305 Re: get element by ID Or you can also do it this way.
<html>
<head>
<title><!--Sample--></title>
<script type="text/javascript">
<!--
window.onload = function()
{ document.getElementById('div1').innerText = 'Hello... |
Forum: JavaScript / DHTML / AJAX Sep 27th, 2008 |
| Replies: 4 Views: 371 Re: Help Hi there shanti! I know you can handle this thing! So i leave this up to you! Good day! |
Forum: JavaScript / DHTML / AJAX Sep 27th, 2008 |
| Replies: 5 Views: 640 Re: adding,removing dynamic tables and validation Yes i believed that theres a better way to do this! But its up to you which pattern you wil take. And as much as possible i always want to provide examples' rather than giving reference or any guide... |
Forum: JavaScript / DHTML / AJAX Sep 26th, 2008 |
| Replies: 2 Views: 394 |
Forum: JavaScript / DHTML / AJAX Sep 26th, 2008 |
| Replies: 4 Views: 371 Re: Help Il work on your code if i get my time! Try to check it later! |
Forum: JavaScript / DHTML / AJAX Sep 26th, 2008 |
| Replies: 1 Views: 461 Re: Drop Down Menu with Sucker Fish Sorry to keep you waiting! Here's your code and ive fixed some of the lines in your script.
<html>
<head>
<title><!--Sample--></title>
<style type="text/css">
<!--
/* Part of the testing that's... |
Forum: JavaScript / DHTML / AJAX Sep 25th, 2008 |
| Replies: 3 Views: 428 Re: Alert for missing information Lets head back to the basic! Hope this 1 wil help you! Good day!
<html>
<head>
<title><!--Sample--></title>
<script type="text/javascript">
<!--
function validate( form )
{ var nameField =... |
Forum: JavaScript / DHTML / AJAX Sep 25th, 2008 |
| Replies: 2 Views: 820 Re: Readonly fields and onchange Here's a little example on how to deal with the readonly field! And date format should be like this ( dd-mm-yyyy ) before it react!
<html>
<head>
<title><!--Sample--></title>
<script... |
Forum: JavaScript / DHTML / AJAX Sep 25th, 2008 |
| Replies: 5 Views: 640 |
Forum: JavaScript / DHTML / AJAX Sep 23rd, 2008 |
| Replies: 8 Views: 742 Re: IE7 not sizing new window You must be having some technical issue, i guess! And that code is actually workin fine with me...
Ok let's head to my last result!
If this doesnt solve the issue then i would like to say sorry in... |
Forum: JavaScript / DHTML / AJAX Sep 23rd, 2008 |
| Replies: 8 Views: 742 Re: IE7 not sizing new window You must be having some technical issue, i guess! And that code is actually workin fine with me...
Ok let's head to my last result!
If this doesnt solve the issue then i would like to say sorry in... |
Forum: JavaScript / DHTML / AJAX Sep 23rd, 2008 |
| Replies: 8 Views: 742 Re: IE7 not sizing new window You must be having some technical issue, i guess! And that code is actually workin fine with me...
Ok let's head to my last result!
If this doesnt solve the issue then i would like to say sorry in... |
Forum: JavaScript / DHTML / AJAX Sep 23rd, 2008 |
| Replies: 3 Views: 943 Re: Play Sound with javascript DHTML This should work!
If not then try to check you plug-ins...
<html>
<head>
<title><!-- Sample --></title>
<script type="text/javascript">
<!--
function playSound( mysound )
{ thisSound =... |