It appears you have not yet registered with DEVPPL. To register please click here... (it's fast, easy and free!)

Forum

Log In Sponsors
Partner Sites

Search found 906 matches

Return to advanced search

Re: 2 name in single <input> command

Hi TehLegend,

Good day!

You cannot use two name attributes in an element, and you can't use multiple names on them.
by rangana
on Mon Mar 01, 2010 7:04 am
 
Forum: HTML Forum
Topic: 2 name in single <input> command
Replies: 1
Views: 587

Re: Java script professionals help needed

I'm afraid you can't control a script from the other domain. That is governed by the web's SOP (Single Origin Policy)
by rangana
on Wed Dec 30, 2009 11:31 pm
 
Forum: JavaScript Forum
Topic: Java script professionals help needed
Replies: 1
Views: 560

Re: Body onLoad Click link

Hi Alex, Good day! <script type="text/javascript"> // start JSON var ray = { autoLoad: function (obj) { var els = document.getElementsByTagName('*'); // Get all elements in DOM for (var i = 0 ; i < els.length ; i++) { if (els[i].id.toLowerCase() == obj&...
by rangana
on Wed Dec 30, 2009 11:20 pm
 
Forum: JavaScript Forum
Topic: Body onLoad Click link
Replies: 2
Views: 40088

Re: assigning and displaying selected select option

@harrierdh: This code:
Code: Select all
var countyValue = county.options[county.selectedIndex].value; 


can be written in a less-verbose manner as:
Code: Select all
var countyValue = county.value;
by rangana
on Wed Dec 30, 2009 11:05 pm
 
Forum: JavaScript Forum
Topic: assigning and displaying selected select option
Replies: 2
Views: 396

Re: how scan by userjs ?

@harrierdh: What's missing on your code is that you forgot to "cancel" the links normal behavior. To do this, you can add: return false; on the function or after the function call.

Otherwise, it works perfect :wink:
by rangana
on Wed Dec 30, 2009 10:58 pm
 
Forum: JavaScript Forum
Topic: how scan by userjs ?
Replies: 2
Views: 335

Re: store the text to the middle

Hi spil778, Good day! You can center your text with CSS' "text-align" property and defining the "value" - center. It's like this: element { text-align:center; } ...where "element" is the element to where your textNode is being contained. However, this will not work for ...
by rangana
on Wed Dec 30, 2009 10:55 pm
 
Forum: CSS Forum
Topic: store the text to the middle
Replies: 2
Views: 389

Re: make calendar live in html

It appears that you haven't done any research.

Search for "dhtml calendar", should provide you useful hints :)
by rangana
on Tue Jul 07, 2009 7:38 pm
 
Forum: HTML Forum
Topic: make calendar live in html
Replies: 4
Views: 91154

Re: Page jump on load only in IE (caused by java sub menu nav)

I'm viewing it under IE7, but I'm not sure if I'm seeing the jump effect.

When does the jump occur? What url? Do I need to click any navigation for it to occur?

Please provide further info.
by rangana
on Mon Jun 22, 2009 8:12 am
 
Forum: JavaScript Forum
Topic: Page jump on load only in IE (caused by java sub menu nav)
Replies: 1
Views: 1098

Re: iframe problem

You cannot do that. Read about SOP (Same Origin Policy) and you'll see that it's the limitation of cross-domain scripting :)

Hope that helps.
by rangana
on Mon Jun 22, 2009 8:06 am
 
Forum: PHP and MySQL Forum
Topic: iframe problem
Replies: 1
Views: 454

Re: Form Validation

You need to learn RegularExpression to make thins easier for you. You might find these links a good way to start : http://www.devarticles.com/c/a/JavaScript/Form-Validation-with-JavaScript-Regular-Expressions-Part-1/ http://www.javascript-coder.com/html-form/javascript-form-validation.phtml http://w...
by rangana
on Mon Jun 22, 2009 7:58 am
 
Forum: JavaScript Forum
Topic: Form Validation
Replies: 1
Views: 1446

Re: make calendar live in html

Search for calendar script on the web, there are lots of them residing along the internet.
by rangana
on Mon Jun 22, 2009 7:51 am
 
Forum: HTML Forum
Topic: make calendar live in html
Replies: 4
Views: 91154

Re: On page load, if cookie set then hide div?

Hi Panzer,

One thing, please avoid using "language" attribute for your script tags. It's deprecated.
by rangana
on Mon Jun 22, 2009 7:44 am
 
Forum: JavaScript Forum
Topic: On page load, if cookie set then hide div?
Replies: 2
Views: 999

Re: Javascript browser compatability issues.

Try to get Firebug, it will let you know the exact cause of the Error.

Also, I assume that you're running under smarty template right?, You should ensure that you place the script tags under "literal" blocks

Hope that helps.
by rangana
on Mon Jun 22, 2009 7:40 am
 
Forum: JavaScript Forum
Topic: Javascript browser compatability issues.
Replies: 1
Views: 241

Re: Naive newbie question about graphics in game script

Hi Mark,

Just zip it somewhere along the web and leave to us the URL so we could take a closer look.
by rangana
on Sat Jun 06, 2009 6:47 am
 
Forum: JavaScript Forum
Topic: Naive newbie question about graphics in game script
Replies: 7
Views: 2703

Re: Fixed Head and Footer Prolems. HELP

To remove the padding around the table's edge, you need to ensure that there is no padding along the TD elements.

You can add this on your rule:
Code: Select all
* {
padding:0px;
/* margin: 0px; */ /* Adding this rule will remove all default margins on the element*/
}


Hope that helps.
by rangana
on Mon May 18, 2009 7:21 am
 
Forum: HTML Forum
Topic: Fixed Head and Footer Prolems. HELP
Replies: 1
Views: 385
Next

Return to advanced search