Tagged Questions
0
votes
1answer
31 views
JavaScript namespace in Module Pattern
I was reading How Good C# Habits can Encourage Bad JavaScript Habits article about creating namespace and modular pattern but I don't understand the reason to use $ and jQuery to create the namespace. ...
-1
votes
0answers
18 views
SOAP namespace jws service [closed]
lately I've been struggling with jQuery SOAP client using jquery.soap the main struggle is how do I get the service url, namespace url and qualifier ...
PS: I'm hosting on Apache Tomcat 7 using Axis ...
0
votes
0answers
15 views
WSDL determining values
<wsdl:definitions xmlns:apachesoap="http://xml.apache.org/xml-soap"
xmlns:impl="http://localhost:8059/axis/hotelsahara/getdata.jws"
...
0
votes
1answer
41 views
window vs. application scope for Javascript variables
Can someone explain reasons for putting all variables with application scope vs. window scope? Is application scope ALWAYS better?
performance?
prevent naming collisons?
other reasons?
window ...
0
votes
2answers
38 views
jquery .on() executing function before event occurs
var MobileMenu = {
menu: function () {
$('#navigation').toggleClass("open");
$('body').toggleClass("push");
}
}
$(function(){
$(".icon-menu").on("click", ...
0
votes
0answers
29 views
Jquery XML DOM?
I want to have some jquery codes that can get the data inside < a:title> and < b:title> separately but it is difficult to do it. I have taken some trials and read some posts about the jquery to ...
0
votes
1answer
44 views
Cannot code jQuery UI dialog into a namespace
The code shown below works fine. I am trying to move the dialog portion (GBBSO.cnst.ddlog.dialog line) into the GBBSO.cnst code block and I'm running into all kinds of errors - syntax, function not ...
0
votes
1answer
74 views
How to pass namespace variable into click function param variable? jQuery
So I found an awesome solution to get around needing to use Global variables in jQuery here. Everywhere I say namespace, originally I was going to use a Global var.
However I'm not able to send my ...
0
votes
1answer
34 views
Error to create namespace in jquery
I had write a code in js file
(function ($) {
var $r = $.loadaccess;
jQuery.loadaccess.page.user = {
init: function () {
debugger;
var k = 'dd';
...
-2
votes
2answers
54 views
js - how to namespace this code? [closed]
I'm trying to use namespacing but can;t get it to work.
I've tried wrapping all the code with a mdd = {} and I've tried wrapping everything within $(document).ready( with var MDD = {} but neither ...
2
votes
3answers
66 views
Passing correct jQuery selector to an object
I am writing a jQuery plugin which, ideally I would like in it's own namespace.
So far, this seems to work (in terms of namespace nesting)
(function($) {
$.fn.nspace = {
foo: function() ...
1
vote
2answers
67 views
jQuery namespacing using objects and self executing anonymous functions
I am looking at creating namespace using objects and self executing anonymous functions. Which one is considered a better option?
Using objects, is giving a unique name 'myAppName' enough to prevent ...
0
votes
1answer
65 views
Ways to avoid variable/function conflict in Javascript (without jQuery plugin)
What are the ways to avoid variable/function conflicts in Javascript (without using jQuery plugins) ? I want to create my own new functions, but want to avoid conflicts.
I think using function scope ...
0
votes
4answers
73 views
Inheritance in nested namespaces in JavaScript
I want to setup nested namespaces to organize my code. I am trying to follow the plugin-like structure described in this article. The problem is I don't understand how to access this.error_msg in my ...
0
votes
0answers
38 views
Jquery Namespacing prevent default
I am trying to call a function from inside a jquery namespace, however to do so I need to prevent the default action of the .cycle and then call it using the function call.
However I can't figure it ...
0
votes
0answers
22 views
jQuery not showing event namespace when using proxy
In my script I want to have two types of click functionality, depend on what is clicked and I want to do it in a single function. I decided to make it with namespaces, but the console gives me ...
0
votes
3answers
49 views
jQuery: namespaces, use variable in another
I need your help.
How can I use variables in namespaces?
Something like this:
$.MyScript = {
script: $("script")
, dataID: script.data("id")
, dataColor: script.data("color")
, Alerting: ...
0
votes
3answers
337 views
Using the JavaScript revealing prototype pattern, how can I namespace functions contained within prototypes?
I'm using the Revealing Prototype Pattern and have 2 different prototypes that I'm putting into the same JavaScript file. These links are to articles I found which relate to this.
...
3
votes
1answer
132 views
jquery namespace: how to pass default options from one method to the subsequence methods?
How can I pass the default options from one method to the subsequence methods?
For instance, I have some default setting in the init method. and I want to use these settings for other methods such ...
4
votes
1answer
129 views
RequireJS + jQuery namespace issue
If I run the optimizer without the "namespace: 'foo'" flag everything works as expected. When I add "namespace: 'foo'" into the app.build.js I get this error:
GET: file:// (path to the project) ...
2
votes
1answer
52 views
A handler for custom jQuery event, regardless of its namespace?
I'm curious about the following...
jQuery allows us to define custom events (e.g. myevent) and trigger these. It's also possible to add an extra layer of granularity by adding namespaces (e.g. ...
0
votes
2answers
74 views
Firebug doesn't hit breakpoint in a function within a namespace
I am reorganizing all my js introducing namespaces with a main script (using jQuery) :
var myapp : {
user : { ... },
...
init : function() { ...}
}
and I load an additional js for ...
0
votes
4answers
77 views
Is there some way to share variables between the two functions in hover() in jquery without using global variables?
My code looks like this:
quickbarcolor = $("#quick-bar a").css("color");
$("#quick-bar a").hover(function () {
if ($(this).css("color") != quickbarcolor) quickbarcolorhover = $(this).css("color");
...
0
votes
1answer
58 views
binding jquery widget with underscores or dot
i have a jquery widget with namespace
$.widget( "mynamespace.mywidget" , {...
i have an option named foo
foo: function(){}
i trigger an event with this._trigger
this._trigger('foo', event, ...
...
4
votes
3answers
265 views
Finding an XML node by namespace with jQuery
We've got an XML file where some nodes are namespaced. Basically the file looks like this:
<foo>
<bar xmlns:x="http://www.example.com/">
<x:bla foo="bar" />
...
0
votes
1answer
91 views
How bad is using jQuery extend for namespacing?
From what I can tell, in a current project, the devs have used jQuery extend to handle the namespacing. How bad is this?
var my = $.extend({}, {
itemone: 0
}
$.extend(my, {
init: function() ...
0
votes
2answers
96 views
Jquery - Calling a function within a namespace
How do I call a regular function in a namespace
$(document).ready(function() {
Timeline.init();
Timeline.highlight_arrow();
Timeline.arrows();
});
Timeline.arrows = (function() {
function ...
0
votes
4answers
101 views
Shortcut Limit jQuery to Specific DOM Node
I want restrict jQuery to specific namespace or DOM node. Currently what I do is something lik this on every line
$('a' , $node).addClass();
$('li' , $node).removeAttr();
$('div#q' , $node).hide();
...
1
vote
1answer
67 views
Javascript, JQuery and my own namespaces
I've seen a number of approaches to creating your own namespaces in JS, but it does get a bit confusing.
We make use of JQuery and in one project we recently got involved with I noticed that ...
1
vote
3answers
677 views
Namespacing in Backbone.js
I am confused how I should implement namespacing in Backbone.js. I have been creating my Models, Collections & Views globally. Is namespacing them simply adding a App. infront of the models, ...
1
vote
1answer
97 views
Access sibling namespaces in Javascript, Change namespace variables in SEAF
I'm having trouble figuring out namespaces for a project.
My Namespace looks like this thus far:
var NS = NS || {};
NS.Utils = NS.Utils || {};
NS.Models = NS.Models || {};
NS.Views = NS.Views || {};
...
0
votes
4answers
180 views
Delay a function until $ becomes available
Yahoo suggests to load scripts at the bottom of an HTML pages for performance reasons. I use HTML5 Boilerplate, which honour the rule.
The problem with this approach is that jQuery is loaded at the ...
0
votes
0answers
48 views
jQuery Plugin 2 Instances does not run?
I have built a jQuery Plugin that uses setTimeout and is saved ageist the selectors .data() but for some reason the timeouts seem to run independently as both timeouts are affecting the same element ...
0
votes
1answer
45 views
jQuery Name Spacing and setTimeout
I'm trying to build a jQuery Plugin using there Name spacing as per there direction here:
http://docs.jquery.com/Plugins/Authoring#Namespacing
Now i have run into a problem my plugin need to use a ...
0
votes
2answers
121 views
Correct place to define options in jquery plugin
I have a jQuery plugin that uses namespacing (methods) and also has options, with defaults, that can be overridden on initialization.
I'm wondering what the best way to define and use options is ...
0
votes
2answers
108 views
How to call name space with id given on page load
How to call name space with id given on page load
i have following name space
var panel = panel || {};
panel = (function() {
var div_pass = function (id) {
...
0
votes
0answers
235 views
JQuery namespace conflict with MVC 3.0
I am using MVC 3.0 along with Datatables, the TableTools plugin, and JQuery-ui autocomplete. I am getting various errors of the form
Uncaught TypeError: Object # has no method 'somemethod'
most ...
0
votes
0answers
164 views
jQuery: unbind all events not having a specific namespace
e.g.
$el.bind('click.test1', function() { ... });
$el.bind('click.test2', function() { ... });
$el.bind('click.test3', function() { ... });
...
$el.bind('click.testN', function() { ... });
I'd like ...
3
votes
1answer
331 views
In jQuery 1.7.2 what is the difference between on(“click”) and on(“click.randomText”)?
I inherited an application which uses jQuery 1.7.2.
Throughout the application we have code like the below:
$('#quotation').off("click").on("click", function(){
// do something here...
}
Now, ...
3
votes
1answer
274 views
How to call an instantiated class' function in javascript?
To tell the true, i can call the function but just in hard-coded way. Instead of hard-coding the submit binding my getData function, i'd like to call the function by arguments. Please help me, how to ...
0
votes
0answers
56 views
Name spacing not working in browser but works in Jsfiddle
Hey I tried to namespace my js file . It works for some reason in JS fiddle. Here is the link
JS Fiddle
It is not working if I tried to open the html page in the browser !
0
votes
1answer
91 views
Saving a reference to jquery element in a hash array
For performance, I'll often save references to dom elements in a var, such as:
var $header = $("#header");
If I have multiple elements, I'd like to be able to do something like:
var someNamespace ...
0
votes
1answer
95 views
Drupal jQuery namespacing
So I can use the short and convenient dollar jQuery notation I am using the following code structure:
(function($) {
$('div#webform-component-team-name').css('background', 'blue');
...
0
votes
1answer
165 views
Mixing javasvript and jquery within namespace
Was having trouble a few weeks ago getting jquery to run in firebug (esp on drupal sites). Apparently the issue was that Drupal was grabbing the $ variable, so I got a little namespace snippet ...
1
vote
3answers
195 views
Best pattern to namespacing a property with jQuery
I'm in the process of namespacing a couple of scripts in my project and after searching for a while, I'm not sure if I follow the best practices to namespacing properties.
Here is a sample of what I ...
1
vote
3answers
144 views
what should i use for namespace on jquery widgets?
I'm reading through the beginners documentation on creating plugins using the jquery ui widget factory. It takes a named spaced name:
$.widget( 'dp.list', {
My question is... do you HAVE to have ...
0
votes
1answer
198 views
Accessing Name Space Variables in XML with Jquery
I have the following XML:
<?xml version='1.0' encoding='UTF-8' ?>
<feed xmlns='http://www.w3.org/2005/Atom' xmlns:media='http://search.yahoo.com/mrss/'
...
0
votes
3answers
155 views
Load variables into async JS?
I am trying to get some variables into a script I am loading. Currently, I have like
window.myApp = {
id: ''
};
And I am loading the javascript like
(function() {
var s = ...
2
votes
3answers
143 views
Faster way to access namespace variables?
I have a javascript namespace setup like:
(function (skillet, $, undefined) {
skillet.messages: {
pages: {
logon: {
errors: {
username: 'user is wrong'
...
0
votes
2answers
88 views
Global namespace vars?
I am trying to do something like
(function( skillet, $, undefined ) {
skillet.global = {
names: {
first: 'abe',
last: 'watson'
},
addresses: {
home: 'blah'
}
}
}( ...

