Tagged Questions
1
vote
10answers
119 views
What is the purpose of “finally” in try/catch/finally
The syntax will change from language to language, but this is a general question.
What is the difference between this....
try
{
Console.WriteLine("Executing the try statement.");
throw new ...
-1
votes
1answer
41 views
I need help finding an alternative to synchronous jQuery ajax
I have a very complex form which contains multiple tabs. Each tab contains a unique Plupload instance (for uploading multiple images). The form allows a user to upload a medical image 'case' where ...
-1
votes
0answers
51 views
How is (A & B) different from (A && B) in Javascript [duplicate]
The title really says it all, but as far as I can tell they ought to act the same for boolen inputs, but differently for truthy/falsy objects? For which do short-circuit rules apply?
I can not find ...
0
votes
1answer
24 views
Logic for Form Validation for JS
Assume I have two forms, firstName and lastName.
I have an alphanumericvalidation method which I tested individually.
function alphaNumericValidation(Name)
{
...
1
vote
5answers
49 views
OR Logic in if statement issue.
I am having a problem with the logic in my if statement. I am trying to have it check to see if the strings character is equal to a, e, i, o, OR u. And then if so add the character to the phrase ...
0
votes
1answer
56 views
Javascript match string against string in array
I have a set of input fields, each with the class "smarty_address_check"
<input type="text" class="smarty_address_check" value="this is a new value" />
<input type="text" ...
4
votes
3answers
69 views
Logical differences between very similar terms in beginner javascript
What is the difference between these two terms:
if(counter % 4 != 0)
if(counter % 4 == !0)
I can't see any logical difference, yet my computer does (and I am 100% sure my computer is more ...
1
vote
1answer
41 views
Execute code if no string match if found
So this is a logic problem I'm having:
$('#id_country').change(function () { // ON CHANGE OF DROP DOWN
var countryShortCode = $(this).val();
$('#country-phone-code option').each(function () { ...
0
votes
2answers
49 views
jquery validation form logic
I have another logic question that I am getting stuck with. I need this form to only allow either one or the other. Either the text input or the checkbox, not both!
}else if(question_pos==7){
...
0
votes
1answer
42 views
The logic of multiple travelling animations in javascript
I have an image of a bug. I want to make 5 copies of that image fly in from the side of the screen and bounce around the screen and bounce off the sides. I want them to all have different starting ...
0
votes
3answers
58 views
Print cross using javascript in html
I have this code on my external javascript
function cross()
{
var output2 = document.getElementById('output2');
var a = "*"
, b = " "
, i = 0
, j = 0
, k = 0
;
...
1
vote
4answers
82 views
JS counting repeat occurences
I need to find if the string inside td.aws appears more than 3 times, and if it does, put that string into a new list.
I have a table like so:
<table width="100%" cellspacing="0" cellpadding="2" ...
0
votes
1answer
39 views
JavaScript - How to calculate mileage expense total
I'm currently developing an expenses form in which the user will input their mileage to a destination and their mileage from a destination.
There is a mileage band tariff, for example:
0-10 miles ...
-1
votes
3answers
154 views
Regular expressions in javascript
Hi I'm new to javascript and I have the following function:
function checkform() {
var theForm = document.getElementById('login_form');
var regName = /^[a-zA-Z ]+$/;
var firstname = ...
0
votes
3answers
59 views
Syntax Error in if/else Statement [closed]
I'm getting a syntax error on this code but I don't know why.
$(".choose-one .monthly, .choose-one .yearly").live("click", function() {
billing_selection();
});
function billing_selection() {
...
2
votes
1answer
30 views
Unknown function behavior
I'm trying to understand what this function do, but I'm clueless. Any ideas?
var mystery = function (str) {
var x=true;
for(var i=0; i<str.length/2; i++){
...
1
vote
1answer
54 views
if Function is returning the same output
When the user selects an answer, the code below is supposed to give different results; however, it just gives the same result. Why is it giving the same result when the button is pressed?
1.Is the ...
0
votes
1answer
66 views
Logic: Combining dropdown boxes to toggle visibility
I have 100 rows of data, each with 3 properties: age, location, gender.
I have 3 select boxes, to filter my data based on age, location and gender.
My function, setVisible(true) or ...
0
votes
1answer
66 views
Match string and remove associated CSS [closed]
So I have a Javascript array of CSS selectors:
array is like the following: '.header', '#footer', '#nav', etc
I also have a div containing my site CSS as text (12,000 lines long):
<div ...
0
votes
1answer
148 views
Checkbox Indeterminate State Logic
I have nested unordered lists, with a list item as it's heading that looks something like this.
<ul>
<li><input type="checkbox" /> Header 1</li>
<ul>
...
-1
votes
4answers
105 views
How to check number of fields filled out?
i am stuck in this small issue:
i have a page where user can fill out up to 10 fields. but he doesnot have to, he can also fill out only one. at first, user has only one field, then he can add more ...
0
votes
2answers
35 views
JavaScript & DOM Logic Appears Correct but Won't Run Right
All I want to do is disable the button if there's no content in ftemp. If there is, I want the button to enable and check if it is numeric. Then I can send the ftemp to the next page. My html :
...
-4
votes
1answer
77 views
Ideas for generating a class quiz from an array with 300 questions [closed]
I want to start off with that I don't want an answer, I just want ideas so in essence this is a collaborative brainstorming of pseudo-code or concepts :)
Problem: I was asked to write a program that ...
0
votes
3answers
59 views
Algorithm to Categorize sizes using Javascript or Ruby
I need some help with this problem on a Web App to that I am working on for our Inventory management. So let me run you through the details:
Every product has a size dimension in Width and Height ...
1
vote
2answers
48 views
Understanding this go back logic
I saw this go back code in a website and I am trying to use it on my website. I am having trouble in understanding how the toURl and refUrl are being generated in it. Please guide about their ...
1
vote
2answers
106 views
Creating a local variable to keep track of months on a calendar in javascript.
Here I have below a full html page for a calendar creation, copy it over to see what it does.
I have two buttons below that can increment month by one. My problem is because I can instantiating var ...
0
votes
1answer
14 views
Filtering the space the space to the end of the string while retaining special charecter at same position
I have a string ( ) - ( ) where "(",")" and "-" are special characters in the string. Here the string separates the character with white space. When the user enters the characters between the ...
0
votes
1answer
67 views
Issues With Code Snippets in a Javascript game
I've recently bought a book to start learning to make games in HTML 5, CSS3, and Javascript/Jquery. The first game it introduced is a simple ping pong game. Most of it was copy and paste but since ...
0
votes
0answers
126 views
Unity3d/JavaScript/GameLogic 3D snake classical movement
function Update () {
if (Input.GetKeyDown(KeyCode.LeftArrow) || Input.GetKeyDown(KeyCode.A))
{
right = true;
left = false;
}
if (Input.GetKeyDown(KeyCode.RightArrow) || ...
0
votes
1answer
59 views
Logic to use to find out if the entered date is today or later
I have function that loops every 500ms, and collects date information:
var mlptoday = {};
var timer = setTimeout(today,500);
function today(){
var d = new Date()
mlptoday.date = ...
5
votes
2answers
186 views
How can I create a live stream of youtube videos?
I'm programming a stream of youtube videos that should play on a set schedule, similar to television. If you enter the website the video stream should pick up at whatever video is up in the schedule. ...
0
votes
1answer
149 views
How to display values from an array onto a calendar with javascript
Here I have a java script that will build an calendar based on the year and month chosen in document.write(makeCalendar(2013,0)) First param is the year and second param is the month.
I have worked to ...
0
votes
1answer
43 views
Searching a database not including plurals in javascript code
I have a program where I give it a noun and it checks in its database with a table of nouns, to see if that noun is there.
That works find for singular nouns.
eg.
User types, 'What is a tree?'
...
0
votes
2answers
67 views
How to repeat boxes until maximum width/height is reached?
<style>
div
{
border:2px solid #a1a1a1;
padding:10px 40px;
background:#dddddd;
width:300px;
}
</style>
</head>
<body>
<div>The property allows to Create Chess ...
0
votes
2answers
133 views
How to create custom JSON data structure?
The output for the JSON data structure with 100 objects should look like this:
[{
"Value": "Sens1_001",
"Parent": Null,
"Child": {
"Value": "Sens2_068",
...
-2
votes
1answer
119 views
making logic for quiz app using titanium
Hi I am making a quiz app using titanium.The data has been received well in the arrays.Now i am trapped how to update the label each time a next button is pressed because if i make the labels in event ...
2
votes
1answer
61 views
An expression evaluates to TRUE when it couldn't possibly be TRUE, could it?
I have the following check to see if an element should be considered "hovered over" or not.
I'm very confused because I'm seeing elements set to state === 'hover' when they should not be.
The alert ...
-1
votes
1answer
58 views
Logic for Implementing Filters for Search - IOS
So there is a list of book in an array that I am displaying on my view. I have 3 filters on the top of the view which are like:
(All | Reading level 1 | Reading Level 2 | Reading Level 3) (All | ...
1
vote
1answer
266 views
KineticJS / Javascript dynamic creation and immediate dragging
What I want do is dynamically create a shape on mousedown, and then immediately have it (the shape) follow the mouse cursor until mouseup sets it in place.
Here is what I have so far and it's not ...
4
votes
1answer
118 views
Jasmine expect logic (expect A OR B)
I need to set the test to succeed if one of the two expectations is met:
expect(mySpy.mostRecentCall.args[0]).toEqual(jasmine.any(Number));
expect(mySpy.mostRecentCall.args[0]).toEqual(false);
I ...
2
votes
2answers
76 views
Recursive addition
Struggling to write this code.
I'm trying to calculate the highest value from a 2 objects. I started separate "S" and "P" objects:
var S = [
{ id: '1', value: '##' },
{ id: '2', value: '##' ...
0
votes
3answers
72 views
Determining the right combination
Struggling to write the code...getting lost in the loops.
I've got there 2 data sets, for example:
var elements = [
{"id":"21.U2duHWiX.0zu.E0C","amount":"345"},
...
3
votes
2answers
84 views
replace the “.” into [dots] in multiple urls at a string
i want to replace the "." into tokens like [dot] from below input to below output
input
this is a test.for a question. at stackoverflow.com the best place to learn. programming. test ...
0
votes
0answers
103 views
Calling JavaScript from within PHP logic error
I am printing out a number of rows from my database. Each row contains one td which contains which id is the respective row number(row numbers start at 1).
As each row is echoed, I update the rows ...
1
vote
0answers
105 views
Logic or Algo to solve this issue [closed]
Above shown image displays my UI. What it does is, on clicking a check box related to any Network, it loads carriers related to that particular network. Now, from the filtered list of Carriers, if I ...
0
votes
0answers
46 views
show selections in date time format jquery/javascript [duplicate]
Possible Duplicate:
Javascript equivalent of php’s strtotime()?
Have the logic to convert selected option to time format in PHP:
switch($this->input->post('custom_date_range')){
...
-1
votes
1answer
74 views
Permute Characters to get all Mnemonic types of Syllogism [closed]
I've being trying to create a function to output all Mnemonic types of Syllogism.
There are 64 of them (AAA, AAE, AAI, AAO, EEE, EEA, ...).
So far I have a function that outputs these:
[1: ...
-1
votes
3answers
97 views
In a given Json, search for the particular given string based on key, return true if found, else false Using jQuery/Javascript [closed]
Given JSON String/object
{
"selectAll": false,
"include": {
"country_197": {
"id": "197",
"data_type": "country",
"name": "Singapore",
...
0
votes
4answers
104 views
how to insert string into a javascript object
var myeleArr = {
advertiser :{},
campaign :{},
strategy :{},
};
i want to insert some string into myeleArr.campaign object, so ...
1
vote
3answers
250 views
array_search Recursive in javascript
function array_searchRecursive( $needle, $haystack, $strict=false, $path=array() )
{
if( !is_array($haystack) ) {
return false;
}
foreach( $haystack as $key => $val ) {
...


