Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 115
Search took 0.53 seconds.
Search: Posts Made By: 007julien
Forum: JavaScript programming 05-12-2013, 12:24 PM
Replies: 6
Views: 206
Posted By 007julien
Peter-Paul Kock wrote very good pages on...

Peter-Paul Kock wrote very good pages on javascript (http://www.quirksmode.org/js/contents.html). Although they are relatively old, they contain valuable lessons including events...
Forum: JavaScript programming 04-29-2013, 08:30 PM
Replies: 5
Views: 153
Posted By 007julien
Just a few missing quotes : output += '<button...

Just a few missing quotes :
output += '<button class="btnType2" onclick="SetOrderLine(\'' + hatAndGloveSize[i] +'\')"/>' + hatAndGloveSize[i] + '</button>';

An alert(output) before...
Forum: JavaScript programming 04-22-2013, 03:00 PM
Replies: 25
Views: 560
Posted By 007julien
A poor response, which does not address the real...

A poor response, which does not address the real issue !
Forum: JavaScript programming 04-22-2013, 10:37 AM
Replies: 25
Views: 560
Posted By 007julien
Bravo mrhoo ! You understand what it means to...

Bravo mrhoo ! You understand what it means to take one of the remaining numbers !
Forum: JavaScript programming 04-20-2013, 11:21 AM
Replies: 25
Views: 560
Posted By 007julien
There is not a question of cat killing ! Not...

There is not a question of cat killing !
Not only an other method, but often a shorter and better method to choose only the elements that you need !
Forum: JavaScript programming 04-20-2013, 10:27 AM
Replies: 25
Views: 560
Posted By 007julien
There is no need to shuffle an entire array to...

There is no need to shuffle an entire array to select randomly a non-repeating number.
Simply choose the numbers among those remaining...

To choose 2 cards between 52. There is no need to...
Forum: JavaScript programming 04-11-2013, 11:31 AM
Replies: 14
Views: 490
Posted By 007julien
What about a : «Please do not capitalize all...

What about a : «Please do not capitalize all letters» after two following Capitals letters ?
Is not it better to use the user?
Forum: JavaScript programming 04-11-2013, 11:07 AM
Replies: 11
Views: 351
Posted By 007julien
It's not possible to store the range of the image...

It's not possible to store the range of the image in a cookie ?
Then see, for example, this PPK cookies functions (http://www.quirksmode.org/js/cookies.html).
Forum: JavaScript programming 04-10-2013, 11:40 AM
Replies: 6
Views: 187
Posted By 007julien
It's depends only of braces for the two...

It's depends only of braces for the two instructions after the for loop !
Without braces like initially the response is b, with braces the response is d !
Forum: JavaScript programming 04-02-2013, 03:23 PM
Replies: 30
Views: 807
Posted By 007julien
I have build this page about ICAOCode...

I have build this page about ICAOCode (http://mamisab.chez-alice.fr/iacoPhonetic/) with a mini dev-Player (http://www.alsacreations.fr/dewplayer.html). This can be usefull ...
Forum: JavaScript programming 04-01-2013, 06:15 PM
Replies: 6
Views: 203
Posted By 007julien
I am not offensive but just scared to see the use...

I am not offensive but just scared to see the use made of JQuery !
Forum: JavaScript programming 04-01-2013, 05:23 PM
Replies: 11
Views: 224
Posted By 007julien
It's possible to work with a simplified form of a...

It's possible to work with a simplified form of a calendar like this (http://mamisab.chez-alice.fr/calendrierPTT.html) to define, for each year(*), the vacation days with some general rules(**) and...
Forum: JavaScript programming 04-01-2013, 04:51 PM
Replies: 6
Views: 203
Posted By 007julien
Ok for the 90,4 Ko. It's ever more that a change...

Ok for the 90,4 Ko. It's ever more that a change which almost no code consome...
Forum: JavaScript programming 04-01-2013, 04:08 PM
Replies: 5
Views: 219
Posted By 007julien
Some remarks... The function addCommas is...

Some remarks...

The function addCommas is useless...

The variable weekday is not a global variable (It's define only in the function dayofWeek). Then it is undefined later.

// Replace this...
Forum: JavaScript programming 04-01-2013, 02:48 PM
Replies: 6
Views: 203
Posted By 007julien
Your function use probably a setTimeout. Then...

Your function use probably a setTimeout. Then this setTimeout is to clear;
Try this scheme :

// A global variable
var myMove;
// The function to repeat
function MoveBg(){
// some code
...
Forum: JavaScript programming 03-22-2013, 10:21 AM
Replies: 10
Views: 343
Posted By 007julien
See to this page about Changing select element...

See to this page about Changing select element content on the fly (http://www.javascriptkit.com/javatutors/selectcontent.shtml) to use the options constructor new Option(text, value, defaultSelected,...
Forum: JavaScript programming 02-25-2013, 09:32 PM
Replies: 16
Views: 474
Posted By 007julien
We are very strong with javascript ! But are we...

We are very strong with javascript ! But are we good teachers for beginners ?
Forum: JavaScript programming 02-25-2013, 03:40 PM
Replies: 16
Views: 474
Posted By 007julien
It could be useful to work with objects ? With...

It could be useful to work with objects ? With something like this :

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta...
Forum: JavaScript programming 02-23-2013, 08:52 PM
Replies: 6
Views: 293
Posted By 007julien
If idx is an Array : « The indexOf() method is...

If idx is an Array : « The indexOf() method is not supported in Internet Explorer 8 and earlier.» (w3schools.com (http://www.w3schools.com/jsref/jsref_indexof_array.asp))
Then use an object idx and...
Forum: JavaScript programming 02-21-2013, 10:30 PM
Replies: 5
Views: 270
Posted By 007julien
A variant consists to split your string with the...

A variant consists to split your string with the underscore

var arrStr="08363-G-5109-DWG-R-00001_A.pdf".split('_');

alert('Before:' +arrStr[0]+', after:'+arrStr[1]);
Forum: JavaScript programming 02-21-2013, 07:44 PM
Replies: 3
Views: 230
Posted By 007julien
For each name, you have only to store the target...

For each name, you have only to store the target position (positions to reach) an to calculate the distance with the drop position. If the distance(*) is less than few pixels (3, 7 or 15px, it...
Forum: JavaScript programming 02-21-2013, 03:35 PM
Replies: 3
Views: 230
Posted By 007julien
See the script of this demo page...

See the script of this demo page (http://mamisab.chez-alice.fr/dragDop.html) on which image and paragraphs (with the class drag) are drag-able...

To work with the drop position, you dispose (in...
Forum: JavaScript programming 02-20-2013, 11:49 PM
Replies: 21
Views: 681
Posted By 007julien
With onkeyup it's possible to read the input...

With onkeyup it's possible to read the input value, while with onkeypressed or onkeydown this value is not yet available ! That is, in my opinion and with my « slighly fractured English», an...
Forum: JavaScript programming 02-20-2013, 12:44 PM
Replies: 21
Views: 681
Posted By 007julien
With onkeypressed the key should be interpreted...

With onkeypressed the key should be interpreted (which is not always easy with numeric keypad or shift key with the AZERTY layout), with onkeyup it's only to read !
Forum: JavaScript programming 02-20-2013, 12:16 PM
Replies: 20
Views: 524
Posted By 007julien
I do not understand clumsy but it's our official...

I do not understand clumsy but it's our official method ! See this page (http://www.minefi.gouv.fr/a_votre_service/informations_pratiques/calculs/prets/pret.htm)

NB : With the wrong banker's...
Showing results 1 to 25 of 115

 
Forum Jump

All times are GMT +1. The time now is 09:29 PM.