Tagged Questions
0
votes
1answer
25 views
coffeescript jQuery - how to refactor this (noob) approach?
after starting to learn some coding I did this (very ugly, non DRY) star rating switch with bootstrap in a rails4 app. I already did the codeschoool coffeescript tutorial, but it seems ruby is a ...
1
vote
0answers
34 views
titanium studio no refactoring in eclipse?
I started to learn titanium and I cannot find any options for refactoring. I'm used to pydev in eclipse with pretty good refactoring and to be honest I'm bit straggling without it. Is there some ...
0
votes
1answer
52 views
Extend Zepto.js so don't need jQuery anymore
I like the idea of cutting out 80% of jQuery by using Zepto.js. However, when making the switch, it is clear some of the jQuery plugins I'm using, for example jQueryUI draggable(), can't find in Zepto ...
0
votes
0answers
31 views
Javascript - Refactoring old framework
i need an advice.
Let's say i got old javascript framework (some messy core with plugins) without any documentation. I have to learn , documentate and then make refactoring on it. It's more or less ...
1
vote
1answer
32 views
Convert standalone Javascript to widget
We have an 8,300-line Javascript application, which implements an interactive diagram for a hand of bridge. It's currently written with about 250 top-level variables, 250 functions, about 130 lines of ...
0
votes
0answers
27 views
What will it take to make this miner work with new pools?
This might fit better at bitcoin.stackexchange but since it's so involved with JS I'll post it here.
If found this pretty slick https://github.com/jwhitehorn/jsMiner. It appears that it's using 100% ...
0
votes
3answers
24 views
Javascript conditional execution and simplification
I have the following script which works great however I think this can be simplify, right? also, I'd like it to trigger only once.
Example, user inputs "My Title". Script executes and user sees ...
2
votes
1answer
139 views
Migration from Backbone to AngularJS - how difficult it is?
I'm developing a big project in Backbone (around 8000 lines of javascript, excluding external libraries) and I'm considering a migration to AngularJS.
Currently I have a lot of code that handles ...
0
votes
3answers
28 views
Refactoring UI callbacks with jQuery
I just did a slideshow with jQuery and looking at the code of "Next Slide" and "previos slide" buttons, I realized that they were almost the same, except for a couple of functions that change.
I ...
0
votes
2answers
59 views
How to make such jquery declaration more compact?
I'm using jeditable for around 30-40 fields of different type, that's why I have to write a number of the blocks
$(".editable-...type of element...").editable(method, {parameters})
for different ...
1
vote
1answer
51 views
Extracting code to put it in another function
I have the following working js/jquery code :
$(document).on('nested:fieldAdded', function(event){
return $('.datetime_field').datetimepicker({
altField: '#datetime_to_server',
altFormat: ...
0
votes
1answer
134 views
How to refactor angularjs controllers with mostly common code
I'm relatively new to angularjs. I've got some code (HTML + JS) that allows a user to add and remove entries from an in-scope array. Right now however I am massively repeating code for different ...
1
vote
1answer
57 views
Is it good to have unique method names across your application?
I might have the same method name across different and disparate objects:
Frame.hide = function() {
//
}
Dialog.hide = function() {
//
}
Treasure.hide = function() {
//
}
Is it good to keep method ...
0
votes
0answers
38 views
Javascript refactoring framework [closed]
I am currently creating a javascript refactoring framework in clojurescript. Because Javascript is a dynamic language and has no static type info I've used an points-to analysis to infer type info ...
0
votes
1answer
60 views
Avoiding boilerplate code when handling events (Backbone, CoffeeScript)
Consider the following example http://jsfiddle.net/YmWW2/.
How can I avoid redundant methods like execFoo, execBar, execBaz and pass string like "foo" directly to exec method?
events:
"click ...
2
votes
2answers
48 views
Get all JS variables that begin with a certain string
I'm writing a plugin for a website that I have no control over except my ability to add JS code to it (in fact it's a set of html docs generated by an obsolete wysiwyg html editor).
For my purposes, ...
0
votes
0answers
50 views
How to refactor link_to_function using unobustrive JS in helper?
I am using link_to_function in one of my ApplicationHelper method:
def link_to_add_fields(name, f, association)
new_object = f.object.class.reflect_on_association(association).klass.new
fields = ...
0
votes
0answers
79 views
Javascript Tool for detect Nested If statements
<script type="text/javascript">
function validateInput() {
<% foreach (var m in Model.Services.OrderBy(s => s.Service.DisplayIndex)){%>
if ($("#<%: m.Service.Key ...
0
votes
1answer
150 views
How can I make this JavaScript/CSS random animation code simpler? [closed]
The JavaScript code below generates CSS to set up an animation using random values. The code is complicated and repetitive. How can this code be written more elegantly?
axis=["X","Y","Z"];
...
1
vote
2answers
122 views
Renaming variables in JavaScript
I've been stuck with the unpleasant task of "unminifying" a minified JavaScript code file. Using JSBeautifier, the resulting file is about 6000 lines long.
Ordinarily, the variable and parameter ...
0
votes
0answers
64 views
How to rename a function in a dynamically typed language without breaking code
How can I rename a function/method in a dynamically typed language like JavaScript or Python so that I won't break code. Which development practices do you use to do so?
One idea is to have as long ...
0
votes
0answers
31 views
How do I rename a variable in Webstorm without renaming String occurances?
How do I get Webstorm to rename a variable in my code without renaming incidental strings?
For example, I want to rename the var div :
var div = document.createElement('div');
div.className = ...
1
vote
2answers
85 views
Looking for a way to refactor D3.js-style method chaining pattern
While learning D3.js, I have come across the blog post explaining the main design-pattern behind it's reusable units of code. I have reproduced the relevant bit of code below. The way the pattern is ...
1
vote
5answers
66 views
Better solution than a switch statement
Below is a function that extracts a month from an array in a loop. When a month is found the month get iterated by 1 in the object CRIMES_PER_MONTH.
This works, but it's quite an ugly solution and ...
-1
votes
2answers
89 views
How to simplify javascript code [closed]
Is there any way to simplify this code with loops or anything? I'm a beginner at javascript and my code is horrible. Please don't tell me to convert to jquery or anything.
function ...
0
votes
2answers
141 views
Refactoring Rails Controller / Views to call Javascript / jQuery
I'm trying to refactor some legacy code at the moment. It currently goes something like this:
Controller
def create
# do stuff
respond_to do |format|
format.html { do stuff }
format.js ...
1
vote
1answer
91 views
Refactoring code - general way to handle it
I have a code which has a start() function that executes every cycle. In it I call a pause() function here and there.
I now have to become more smart of the way I call the pause() depending on some ...
1
vote
3answers
151 views
Can knockout.js bind to CSS classes?
Suppose I have a large JS file full of definitions like:
$(document).on('focusin', '.field', function () {
// some logic
}).on('focusout', '.field', function () {
// some logic
});
In the ...
0
votes
3answers
51 views
Programming standards & refactoring a try/catch statement
Using:
node.js
Problem:
While refactoring my code today I saw these chunks of lines. The interesting thing about them is that each alternative line in the try catch can cause and exception and ...
1
vote
1answer
212 views
Javascript function - FB oAuth function turn it for the twitter oAuth?
I'm actually using this js function for the facebook connect.
window.fbAsyncInit = function(){
FB.init({
appId: '371***********',
status: true,
cookie: true,
xfbml: true ,
...
0
votes
5answers
155 views
long javascript if else statement
I've got a long series of if-else statements. I know there's a more efficient way to do this but am not familiar enough with javascript. Can someone offer some guidance?
...
2
votes
4answers
127 views
how to avoid if/else loops in JQuery
The below code works perfectly but the if/else statements look so long and ugly. Is there a way I can avoid these statements?
CommissionTypeFilterVm is a list that contains 6 properties shown below ...
4
votes
1answer
143 views
How to separate inline javascript from dynamically generated content in Express/Node.js?
This is a somewhat noob-question for someone who had a few years of web development experience, but after not finding the answer on either Programmer Stack Exchange or Google, I have decided to ask it ...
0
votes
1answer
66 views
Referencing a div multiple times in Backbone.js view
Was wondering what the best way to handle this would be. Say I have a div that I'm referencing within multiple methods within one of my Backbone views and I don't want to have to keep re-querying it ...
4
votes
5answers
78 views
jQuery drying up function
As you can see below, I clearly repeat myself over. I understand that this is bad practice.
So, how can the 4 duplicate lines of code within the if and else statement be refactored into one?
Some ...
0
votes
5answers
120 views
How do I refactor these javascript if else conditional statements in my app?
I am building a calculator that uses two sliders like this:
I have a range of CPU and RAM data that is stored in an object like this:
var CloudPlans = {
small: {
id: 'small',
...
3
votes
1answer
122 views
Refactor simple jQuery toggle selector
I am moving my code from document.ready() to self executing anonymous function. I have already done a few bigger code pieces but I'm mostly struggling with the smaller ones. Like this one:
/**
...
2
votes
3answers
82 views
Looking for suggestions on how to structure javascripts
I'm looking for feedback, suggestions on how to structure my java scripts better. I've made an attempt to move js code into their own files. It works but I wonder if this is the preferred way when it ...
0
votes
2answers
122 views
How do I simplify this jquery script?
I have an ASP.NET web forms project that I am trying to implement auto-tabbing in. I'm new to jquery, but I found a code snippet online to do auto-tabbing, and I want to use it to autotab multiple ...
0
votes
7answers
81 views
javascript how to simplify this code by returning method to execute?
I'm playing with JS a bit and have following code snippet
var Dog = function(name) {
this.name = name
}
Dog.prototype= {
'bark': function() {
alert(this.name + ' is barking');
},
...
0
votes
1answer
49 views
How do you pull out common methods that depend on local variables in Javascript?
I'm using Node.js and am creating some models for my different objects. This is a simplified version of what they look like at the moment.
var Foo = module.exports = function () {
var values = ...
0
votes
1answer
69 views
I made an attempt at structuring my JS using 'The Crockford Way,' but I have some concerns
I am trying to figure out how to start off some structure for a new page.
The page is called 'Orders' and it will have a couple of tabs on it for now: 'OrdersTab' and 'TasksTab'
I've got my layout ...
1
vote
2answers
235 views
How do I filter results with multiple select groups using jQuery?
I have two options that I am trying to filter between now, but will be adding in a third and maybe a fourth later on (for example: right now I am filtering between prices and reviews but will want to ...
4
votes
1answer
111 views
Framework to structure existing JS code
I have some procedural javascript code that I have written for an open-source application and I'd Like to refactor it into OOP and since I have very little experience with javascript frameworks I have ...
1
vote
2answers
61 views
jQuery: Refactoring into functions
I'm messing about with JavaScript/jQuery, and just trying to determine how to refactor two very similar:
$('#a-div-element').click(function() {
/* common stuff in here */
})
into one function ...
0
votes
1answer
67 views
How can I implement smarter coding principles into a VB.net site that uses inline code almost exclusively? [closed]
I'm a fairly inexperienced, self-taught web developer, and recently got hired as sort of a jack of all trades, 'figure stuff out' guy. One of the legacy projects I've been working on is a behemoth of ...
0
votes
5answers
129 views
Need to Get the rid of many if's
I have variable in my java script which is global. Now i got different value each time when inner function call. I need to create a option tags with selected value as in attribute and one for without ...
3
votes
4answers
114 views
How to make my conditional statement less ugly [closed]
I am trying to make the following codes less ugly and not sure what to do. Are there any suggestions from you guys? Thanks
a lot.
if($element.is('builder') || $element.is('#options') ){
...
0
votes
3answers
58 views
logical (jshint friendly) equivalent of this assignment in a while loop
dispose: function() {
var disposer;
while (disposer = this._disposers.shift()) { // expected a conditional expression and instead saw an assignment.
disposer();
}
},
jshint ...
9
votes
2answers
290 views
Measuring pollution of global namespace
Background
I'm trying to refactor some long, ugly Javascript (shamefully, it's my own). I started the project when I started learning Javascript; it was a great learning experience, but there is ...







