Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 72
Search took 0.32 seconds.
Search: Posts Made By: eydg
Forum: JavaScript programming 05-22-2013, 02:49 AM
Replies: 1
Views: 71
Posted By eydg
check if field (already) contains a word

before populating, the following

<div class="PAN2">
<input type="radio" id="pick2" />

contains only [object HTMLInputElement]

the user can populate this...
Forum: JavaScript programming 05-20-2013, 02:49 AM
Replies: 2
Views: 93
Posted By eydg
simplify assignment of variables

There are five sets of text data in variables named in the following pattern:
var1_1
var1_2
...
var1_5

var2_1
...
...
var5_5
Forum: JavaScript programming 05-12-2013, 12:05 AM
Replies: 0
Views: 109
Posted By eydg
how to choose the names for classes and IDs of GUI elements across different projects

When creating alternvative or derivative versions of html+js files, I notice a lack of a consistent strategy for naming the names, classes and ids. the consequence is that when I try to integrate...
Forum: JavaScript programming 04-22-2013, 11:11 AM
Replies: 4
Views: 168
Posted By eydg
But how to squeeze the number of letters out of...

But how to squeeze the number of letters out of such an array, anyway?

edit:

here is the answer:
presidentsname[0].length

Thank you!
Forum: JavaScript programming 04-22-2013, 02:14 AM
Replies: 4
Views: 168
Posted By eydg
[solved] wrong text string length

here's how the string comes to existence:

presidentsname = ((lista[number]).split("|")).slice(0,1);

document.diagnostic.window1.value=presidentsname+" " +presidentsname.length;

with...
Forum: JavaScript programming 04-02-2013, 02:41 AM
Replies: 7
Views: 258
Posted By eydg
OK, I will remember. however, the said...

OK, I will remember.

however, the said fields will not be assigned submit functionality. they will be populated from other input and either serve as regular select menus or in case they are given...
Forum: JavaScript programming 04-02-2013, 02:21 AM
Replies: 7
Views: 258
Posted By eydg
false alarm. sorry guys, I chose disabled option...

false alarm. sorry guys, I chose disabled option which does shade out the fields involved. before, disabled somehow did not work, but now it appears to exactly what it is meant to.

many thanks for...
Forum: JavaScript programming 04-02-2013, 01:09 AM
Replies: 7
Views: 258
Posted By eydg
what form element can be made unclickable?

I am looking for a js or jq way to make some of the form fields, like input or select (preferrably select) optionally unselectable.

technically, some data is going to be displayed there without...
Forum: JavaScript frameworks 02-28-2013, 06:44 AM
Replies: 2
Views: 266
Posted By eydg
mark jQuery Mobile 1.3.0b1 on the left panel of...

mark
jQuery Mobile 1.3.0b1 on the left panel of jsfiddle so that the formatting changes to that of jqm and then rerun. clicking buttons no longer copies their label content to the text field.

...
Forum: JavaScript frameworks 02-27-2013, 12:42 PM
Replies: 2
Views: 266
Posted By eydg
[solved] does work with jq and jq ui, doesn't with jq mobile

http://jsfiddle.net/tearex/JjRLf/2/

how to adapt the code to jqm?
Forum: JavaScript programming 02-15-2013, 10:10 PM
Replies: 11
Views: 375
Posted By eydg
@ Sunfighter you must be using ie, or i don't...

@ Sunfighter
you must be using ie, or i don't know why. until forums incorporate the same functionality, jsbin and the like are a great addition. you not only get a sandbox for freestyle...
Forum: JavaScript programming 02-15-2013, 07:24 PM
Replies: 11
Views: 375
Posted By eydg
same event - when wrapped in a function, messes up. WTF?

Why could the same action when turned into a function stop working? are there any general rules? here is a very concrete and clear example of this issue.

jQuery Mobile
WORKING jsbin here...
Forum: JavaScript programming 02-14-2013, 01:47 PM
Replies: 9
Views: 472
Posted By eydg
yes, then why is the car always chevrolet or...

yes, then why is the car always chevrolet or ford?

that is the point of my question.

maybe this part gets triggered before the options get populated?
Forum: JavaScript programming 02-13-2013, 10:55 PM
Replies: 9
Views: 472
Posted By eydg
yes, that's what i think the code is supposed to...

yes, that's what i think the code is supposed to do.

it chooses the right select field by its id
var select= document.getElementById('s1');

it checks the number of items
var items =...
Forum: JavaScript programming 02-13-2013, 09:17 PM
Replies: 9
Views: 472
Posted By eydg
randomly select an option upon clicking a radiobutton - a tiny correction needed

http://jsbin.com/apudev/9/edit

what it does is randomly picks a car from one of two lists chosen by the user.

the only thing is that the choice does not get reflected in the select field.
...
Forum: JavaScript programming 02-08-2013, 06:26 AM
Replies: 2
Views: 131
Posted By eydg
Yes!! Thank you. ...

Yes!! Thank you.

http://jsbin.com/azipok/15/edit
Forum: JavaScript programming 02-08-2013, 03:04 AM
Replies: 2
Views: 131
Posted By eydg
append and instantly display a message to select option

http://jsbin.com/azipok/2/edit

this piece of code does the trick of clearing up the option list of select menu and adding a "test" message, but this message becomes visible only upon dropping down...
Forum: JavaScript frameworks 01-29-2013, 03:59 AM
Replies: 4
Views: 397
Posted By eydg
it does work. thank you. just needed to add px. ...

it does work. thank you. just needed to add px.

appears to be a recurrent motive, so to sum up, in case someone needs it:

html content
css presentation
js behaviour
Forum: JavaScript frameworks 01-28-2013, 11:40 PM
Replies: 4
Views: 397
Posted By eydg
yes, i need it to work with phones too. ...

yes, i need it to work with phones too.

media queries - if i understand the linked tutorials - involve several different css'es applied depending on various conditions, like f e screen...
Forum: JavaScript frameworks 01-28-2013, 02:03 AM
Replies: 4
Views: 397
Posted By eydg
SOLVED: js vs CSS condition: hide a class of elements when screen small

the following JS does work, somehow, but i have a sense that something is inherently wrong with the condition. could you pls help me sort it out?

Here's the simple html. I want the age distinction...
Forum: JavaScript programming 01-15-2013, 09:17 PM
Replies: 1
Views: 223
Posted By eydg
code equivalent of ctrl+ and ctrl-

each major browser nicely zooms in and out html these days.

Is there a smart way to achieve this with a line of code?
Forum: HTML & CSS 01-15-2013, 11:43 AM
Replies: 0
Views: 176
Posted By eydg
html 5 to ipad ios app with xcode

How to put html5+JS into xcode program in order to run ios simulations?

Has anyone gone through that?
Forum: General web building 12-04-2012, 08:43 PM
Replies: 2
Views: 5,437
Posted By eydg
Thank you, Fumigator. Anyone, are there...

Thank you, Fumigator.

Anyone, are there collective stats? Rather than information from individual resellers I need Android and IOS tablets active on the net, and - importantly - how the trends...
Forum: General web building 12-04-2012, 01:38 PM
Replies: 2
Views: 5,437
Posted By eydg
screen resolution statistics for tablets

Is there any up-to-date resource?

I have been searching to no avail.
Forum: JavaScript programming 11-29-2012, 08:28 PM
Replies: 7
Views: 286
Posted By eydg
Thank you very much. Now it works under all...

Thank you very much. Now it works under all conditions.
Showing results 1 to 25 of 72

 
Forum Jump

All times are GMT +1. The time now is 09:07 AM.