0
votes
0answers
30 views

Jquery - Modifying to structure to submit form if successful

I've had some help creating some jquery code which is designed to submit a form if a geocode is successful. However, it doesn't do the submission bit yet and the structure/flow of things will need ...
0
votes
1answer
19 views

Jquery newbie - Geocoder not returning results

This is my first javascript I have tried to put together but I am not having a lot of luck. This is what the script should do: Geocode an address either by clicking on an autosuggested location or ...
0
votes
0answers
24 views

Best practice for displaying jquery driven controls

I am using jquery to adjust font sizes based on clicks on 3 anchor buttons (a series of A's getting larger). My question refers to the best practice for adding these to the html. Is it better to: ...
0
votes
4answers
49 views

What is the most semantically correct way to listen for a click event using jQuery

Guys can you please give me some insight to the proper way to listen for a click event using jQuery and the pros and cons of each: .click(function() { ... }); or .on('click', function () { ... }); ...
0
votes
1answer
91 views

how to replace entire css text with another?

I have web page with different styles that the user can change and build on the fly. I have this code working with browsers IE-9+,chrome,FF,safari. if($("#customCss").length>0) ...
2
votes
1answer
87 views

Writing jQuery-style function chains in AS3 and other class-based languages

This isn't a specific problem I have, more a choice I could make, but I do believe the question is relevant for SO as there may be a 'proper' OO answer, as well as a performance benefit/loss to doing ...
1
vote
2answers
55 views

Weird JavaScript in Firefox

Can someone explain to me why undefined is being printed only in firefox for document.write on the last line. When the first document.write is removed however it works great, and it seems to be like ...
0
votes
0answers
57 views

How to refactoring a 'self' declaration depending on the current context?

I am using jQuery v1.8.3 and jQuery UI v1.9.2. After my previous question, I ended up with the following working code: $('#input_id').autocomplete({ create: function (event, ui) { // Initialize ...
2
votes
4answers
67 views

Shorten a method. Syntax better practices

I've been learning via jQuery how to shorten things up. I was wondering if this script can be expressed in a less verbose way? I don't like how everything sits on one huge line. ...
1
vote
3answers
230 views

On mouseover/mouseout of javascript vs hover of css where on hover on div tag some other element get changed

I have a div element and on hover of div element i want to show an image just below the div tag.Through javascript we can do this by mouseover and mouseout event but i want to do this using css. It ...
6
votes
5answers
136 views

difference between defining variable as var $a=$() and var a?

sometimes in jquery we define variable as var $a=$() which is like declaring a function.So i want to know does it make any change if we define variable as var a only.???
0
votes
3answers
57 views

jQuery: running a function on load, and on an event - .keyup() and .each()

I have a question concerning style/compactness. I have a function which I want to run once when my document loads, and also whenever an event is triggered. My code looks something like this: ...
10
votes
3answers
226 views

set variable inside val

This appears to work and is valid, but is there any reason I shouldn't do this? It saves me a line of code and lets me set a variable and the value of a text area. $('#price').val(default_price = ...
1
vote
5answers
100 views

Keep “this” in a variable and replace all “this” with this variable?

Context When I use jQuery, I often need to keep this in a variable: var obj = { myVar: null, myFunction1: function() { ... }, myFunction2: function() { this.myVar = "blabla"; ...
2
votes
4answers
45 views

jQuery dry optimization

Hello i want to ask how can i optimize that code: $('#infoTrigger0').live('click', function() { $('#info0').slideToggle(); }); $('#infoTrigger1').live('click', ...
0
votes
5answers
73 views

JavaScript Refactoring / Avoid Repitition

I need to refactor this to avoid code repetition. $('#showmore-towns').toggle( function() { $('.popularTownsAdditional').show(); console.log(this); $('#showmore-town ...
6
votes
6answers
189 views

is there an alternative to '#' + div_id?

Been working with jQuery for a while and I haven't seen this yet. Is there a cleaner way to write the following function? Specifically talking about the '#' + div_id: function hide_div(div_id) { ...
1
vote
2answers
68 views

Templates with out root level nodes

I have been experimenting with templating in js and have come across a pretty cool problem. Say you have a handlebars template. Then compile it and output it var template = ...
0
votes
4answers
219 views

Combining selectors as variables in jQuery

I'm thinking of what is the best way to combine selector, which i use as variables in my jQuery code. I want to use selectors as variable always, but the thing is that sometimes i want to use them in ...
1
vote
1answer
51 views

Building a good object orientated application? Function params or Object Params

I have written a PHP application that uses Objects heavily. Added, deleting, updating etc.. rows in my database. I want it to conform to a easy to read standard for future developers and the ...
1
vote
1answer
719 views

Javascript InfoVis Spacetree - Dynamically hide/show Tooltips

I've been googling this and can't seem to find an answer. I will also ask this in the JavaScript InfoVis Toolkit Google Group. I was wondering if it's possible to dynamically hide/show tooltips using ...
5
votes
4answers
2k views

Clearest way to build html elements in jQuery

I've seen a lot of different styles (and few different methods) of creating elements in jQuery. I was curious about the clearest way to build them, and also if any particular method is objectively ...
0
votes
3answers
78 views

wrapping a function as a jQuery parameter

i am buliding an autocomplete for my website when i came across this style of building code: $(function() { function log( message ) { $( "<div/>" ).text( message ).prependTo( ...
5
votes
4answers
162 views

Can I format my JavaScript/JQuery code with linebreaks and tabs?

As a c# coder learning JavaScript I find this alot more readable: $(this) .first() .prepend("<h3>Title</h3>") .end() .removeClass("hidden"); than this: ...
0
votes
4answers
462 views

creating a table in jQuery

I need to create a table from an array recieved with an ajax call. I am creating a 4 column table and currently using...which works but looks awful and wrong. Is there a cleaner, easier to read way to ...
7
votes
5answers
1k views

jQuery: passing $(this) to named function event handler

I note that it's recommended to use named functions when binding an event handler to a javascript event. How can I do this when my function needs to be passed the this object? For example, how would ...
0
votes
2answers
99 views

Why does jQuery library source code use spaces around function arguments? [closed]

The source code to jQuery and UI libraries always use spaces around function arguments. For example: $( event.target ).attr( "tabIndex", -1 ); What is the purpose of this? Why not: ...
0
votes
3answers
169 views

How Can I Compact This jQuery Code?

How can I compact the jQuery Code Below? //FIRST CODE jQuery('.expand-two').click(function(){ jQuery('.content-two').slideToggle('fast'); }); jQuery('.expand-two').toggle(function() { ...
1
vote
7answers
244 views

How to write and keep clean, easily understood Javascript & jQuery

Does anyone have a suggestion regarding tidying up the following code: /* Example code only to demonstrate the type of code my app contains and will contain more of */ $("#filter").click(function() ...
0
votes
2answers
94 views

In jQuery, should I put all my code in one .ready() event or multiple? [closed]

I was wondering what would be the best programming practice for jQuery. Most jquery actions seem to need to be contained within the .ready() or else it doesn't work. If I have a bunch of actions that ...
2
votes
2answers
110 views

Looking for free IDE/editor/plugins which will format source code according to JQuery Core Style Guideline

I am looking for any free editor/IDE/editor plugins which will format javascript code according to the JQuery Core Style Guidelines
4
votes
3answers
147 views

proper way to construct HTML based on AJAX input

So I'm developing this web application in Django. The exact web framework doesn't matter, but the point is: We have a nice separation between code, data and the actual HTML. The further we go however, ...
0
votes
2answers
134 views

How to read style definition with jQuery or plain Javascript?

Is it possible to read style definition with jQuery/Javascript? In case there are no elements with this style?
0
votes
1answer
67 views

How/where to create a shared method out of jquery/erb code?

In my rails 3.1 app I've added update.js.erb, create.js.erb, and destroy.js.erb templates to handle javascript requests, and everything is working great. These each have similar chunks of code that ...
3
votes
4answers
130 views

Is there any possible negative repercussions of using made up attributes in html tags

So suppose I have this tag <a href=""></a> and then I make up some non-standard attribute <a lol="haha" href=""></a> If you ask why, well so that I can conveniently use ...
0
votes
1answer
42 views

Is it good practise to use jquery functionality to keep XHTML cleaner / neater?

For example... If I used jquery to append <div class='clearboth'>&nbsp;</div> instead of coding it into the XHTML itself. Seems wrong to do this but It would be interesting to see if ...
5
votes
5answers
218 views

Is it Better Practice to Inject HTML Through a Server or Through JavaScript?

My current project has me accessing a database quite frequently. To do so, I make calls to my Java Servlet through jQuery Get and Post calls. I was wondering if it was better practice to build any ...
0
votes
5answers
126 views

Trying namespaced functions Jquery: Syntax Issue

I'm trying to change my approach in writing javascript as I did with PHP. Here is the old code that I check it's working. $(document).ready(function(){ var calculatetotalwidth = ...
0
votes
1answer
236 views

How to best design (code wise) a highly interactive web page in JS

Let me start by giving a bit of background on me so you know what my status is, I'm a experienced web developer, have knowledge of design patterns, and come from a background of performance and ...
0
votes
2answers
77 views

php every topic last only 100 comments

i dealing with a case that i allow every topic to have only 100 lasts comments in case a topic have already 100 comments , and a new comment i coming i want to delete the very first comment in the ...
0
votes
1answer
349 views

jquery validation errorClass not working properly

What's going on is when you just press "Send" only the message-body textbox is turning red, meaning errorClass: 'errorField' was applied to it like it should be, but the other elements do not turn ...
0
votes
2answers
83 views

More elegant way to program anonymous functions in jQuery.hover

Let's say I have the following code: $('.slide_back').hover(function() { var $this = $(this), height = $this.height(), $slideHide = $this.find('.slide_hide'); ...
0
votes
2answers
2k views

jQuery mobile collapsible div not styling correctly

Using this: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Page ...
1
vote
2answers
296 views

jQuery UI Dialog - Different style from the file that calls dialog

I have a main.htm file with its own css references. I want to open a jQuery UI dialog when user clicks a button on main.htm. There is a .js file (referenced in main.htm) which handles this process. My ...
2
votes
4answers
219 views

A better loop with jquery?

I'm doing this in javascript and just wondering if it can be solved more elegantly using more jquery? var tbl=""; for(var i=1; i<13; i++) { // creating 12 div's, one for each month ...
6
votes
7answers
356 views

How to handle or minimize tight coupling in jquery

Description By design most jquery code leads to a lot of tight coupling, e.g. selectors assume a specific structure of html var mySubnav = $("#navigation a.sub-menu"); If the corresponding html ...
1
vote
7answers
93 views

Jquery-code optimization

I only need to have different marginLeft values of the animate() inside the else if blocks and everything other in the else if blocks should be the same. The script is as follows : var timeoutID = ...
2
votes
3answers
99 views

What is the most ideal, cross-language method of executing an A/B split?

I'm on a project where I have to implement an A/B split in 15 or so views, in this case for PHP - we'd like to use the same math if possible for our JavaScript projects. What is the most ideal, ...
1
vote
2answers
194 views

Mixing frameworks versus extending frameworks [closed]

What are your thoughts on mixing frameworks, both in JavaScript and PHP? For example, at my company we use CodeIgniter for our PHP applications - most of our sites are on CI1, whereas the new ones we ...
17
votes
3answers
91k views

Jquery - How to get the style display attribute “none / block”

Is there a way to get the style: display attribute which would have either none or block? DIV : <div id="ctl00_MainContentAreaPlaceHolder_cellPhone_input_msg_container" class="Error cellphone" ...

1 2 3