0
votes
1answer
24 views

Date picker in Jade

I am stuck trying to get a datepicker to work using Jade. Framework is node.js and express. I load the javascripts in index.jade like this: link(type='text/css', ...
0
votes
1answer
26 views

tabblable inside tabbable twitter bootstrap

im making my admin panel... with many forms that i want to clasify by category so im trying to do something like this div.tabbable ul#first-tab.nav.nav-tabs li.active ...
0
votes
2answers
139 views

Javascript - Display 'n' number of textboxes (generated by jade) based on input.

I have a page with a set number of dropdown's on it at the moment (4), these dropdowns are used to select data from a list and submit it. It is used for selecting teams for a tournament, so at the ...
0
votes
1answer
72 views

jQuery :empty not working in Jade

I have a div on my page for information messages, but I want it to not be visible if it's empty. I'm using the following jQuery script in my layout file but it doesn't seem to be working. I'm getting ...
0
votes
0answers
113 views

Tags and autocomplete on node.js with Jade and Bootstrap

i'm trying to implement a tagging feature like here on stackoverflow, but the combination of jade, jquery is not something i can overcome so far... I am using bootstrap so bootstrap-tagmanager seems a ...
0
votes
3answers
161 views

Jquery ui tabs with jade

Hi I was trying to create Jquery UI tabs with jade template engine for node js. and its not working. Here is the index.jade: #tabs ul li a(href='#tabs-1') New employee li ...
0
votes
1answer
126 views

Creating an “edit” form in a lightbox/modal window with node.js

I'm somewhat new to Node.js, currently working on an application using node and the Jade templating engine. I'm trying to figure out the best approach to create a lightbox in the interface that allows ...
0
votes
1answer
59 views

how to display 2 directory lists side by side in node.js express

scenario: clients can upload to 2 directories wanted result: client can see the listings of both directories side by side am newbie to these. a couple of jquery listbox widgets to display the ...
0
votes
1answer
142 views

Jade + JQuery Mobile, how to add some sort of button?

as in the .jade files that compile into HTML, and I'm also new to JQuery Mobile. I'm initializing JQuery Mobile in this jade file as such.. doctype 5 html head title= title ...
1
vote
1answer
69 views

Prevent full page from flashing before showing a tab

Currently I am using the twitter bootstrap tabs on a page with the following code. I added a bit of javascript/jquery to push hash tags in the url, so I can actually link to a tab. This works fine, ...
0
votes
0answers
267 views

With node.js Tree Grid (jqgrid) does not populated

I use node.js express and jade. I try to place a jdgrid Tree Grid in my page with no success - the table is displayed but does not populated :( I will really appreciate your help with finding what is ...
-1
votes
1answer
121 views

My JQuery doesn't affect the page [closed]

I use jade and node.js and express I have the following index.jade page (with no layout.jade page): script(type='text/javascript', ...
0
votes
0answers
150 views

jquery error:f[e] is undefined (17 out of range 2) jQuery-v1.8.2.js (line 17 )

in jade view div(id='new_product_dialog',title='new',class='dialog') div#basic_info_wrapper div#new_product_thumb form(id='basic_info',method='post',action='/product/add') ...
1
vote
1answer
805 views

how to pass an array of objects to jade template?

i want to pass an array of objects from mongodb to the client... this is the object var objeto_img= { name:'name of the file', ...
1
vote
1answer
1k views

Jade button and jQuery click event

Im going crazy with this.. Dont get why its not working... I have this index.jade file: !!! 5 html head link(rel='stylesheet', href='/stylesheets/style.css') ...
3
votes
1answer
208 views

How to get the id of a dynamically created label element in javascript

I want to get the text of a dynamically created label in javascript, which is created in jade. Here's the jade: - for( var i = 0; i < groupsName.length; i++ ) { li ...
1
vote
1answer
218 views

Add Jade blocks of content in the client-side with jQuery

I have some content that loads from Jade when page loads (for example, a connected users list). This content is dynamic and client is notified of its changes via socket.io messages. A jQuery script in ...
0
votes
3answers
244 views

Jquery stop submit and get data from form

I'm trying to use jquery to get data from a form and stop the form submiting using this code: $form = $('form#signup') $form.submit(function(event){ event.preventDefault(); var $input=$('#signup ...
1
vote
2answers
692 views

onclick event in jade

I'm trying to make a simple alert event in jade, but its not working somehow, don't really know whats the problem, maybe you guys can find it? Code: PS: you can ignore the socket.io code html head ...
4
votes
2answers
5k views

Node.js JSON.stringify() causing &quot; in output. Can't parse with Jquery

I am using Node.js (with Express.js) to pass a JSON data object from the server to the client view. When I render the JSON object directly to the view I get the JSON object shown on the page as ...
1
vote
1answer
382 views

JQuery Mobile data-rel=“back” not working in dialogs

I'm trying to use jquery mobile dialogs in my express.js project to show errors. I was able to show the dialog with errors successfully, but my problem is that when I click the dialog close button the ...
1
vote
1answer
746 views

JQuery mobile Two column grids inside buttons don't fill the width

I'm trying to create 2 columns grid and to let the buttons fill the column width but the buttons don't fill all the width of the column. Here is my Jade template code: fieldset.ui-grid-a ...
0
votes
0answers
352 views

Nodejs + ExpressJS + Jade + Post no render

1˚ - Client: $.ajax({ type: 'POST', data: data, url: '/someposturl', success: function (data) { console.log('success'); // $('body').html(data); // i don't want it, ...
0
votes
1answer
2k views

Using Dropdowns with Jade and Bootstrap gives me $(“.dropdown-toggle”).dropdown is not a function

I'm trying to get a Bootstrap dropdown working with my Jade layout. But actually I'm getting this error when I'm trying to execute $(".dropdown-toggle").dropdown in my Jade-File: $ is undefined ...
2
votes
1answer
1k views

creating jquery ui tabs with jade(nodejs template engine)

Hi I tried creating jquery ui tabs with jade template engine for node js, and it does not work. here is the index.jade: doctype 5 html head link(href='/stylesheets/style.css', ...
1
vote
1answer
708 views

datepicker in jade template

I'm new to Jade and express and need to add datepicker from jquery UI to one of my layered popup.I have tried inline script and header javascript with onload without any luck. ...
2
votes
2answers
536 views

Sharing layout information between Jade and Javascript

I have a Node.js/Jade-based site and I'm trying to add some interactivity with some simple bits of Javascript. In particular, I'm trying to set up a button that adds a new row to a table. The table ...