... to clone the passed in row and append it to the table. That part works great.
When I try to create a datepicker on the input fields with a date class nothing happens. Incidently, the table drag and drop update call fails to work too.
I had another function to create a new empty row that does something similar but the row is created with a big old HTML string instead, that works fine.
Any idea, peeps. I'm scratching my head a bit here.
I've got something strange going on and it's left me scratching my head. I have a potentially heavy bit of processing going on that might leave the user a bit stumped for a few seconds so I display a message for them.
Or so I thought. The problem is the message only decides to display itself AFTER the process has finished.
Any idea what I could be doing wrong?
Thanks ladies and gentlemen.
function filterSearch(){
$('#filter-applying').show();
var prices = $('#filter-price').slider('option', 'values');
var min = prices[0];
var max = prices[1];
var bedrooms = $('#filter-bedrooms').slider('option', 'value');
var bathrooms = $('#filter-bathrooms').slider('option', 'value');
I'm having a bit of a problem here. I'm trying to add list items to a UL with a possible click event depening on whether an primitive object in an array of configuration options has a function to call specified.
The problem is that all the list items will call the function specified in the last configuration option.
If anyone can have a look at this code and point out what I'm doing wrong, I'll be their best friend forever!!
I'm in the process of moving from Prototype to JQuery and I've hit a snag.
In order to try and wrap my head around the JQuery way of doing things I decided to write a wizard plug-in that will help with a project I'm working on and speed up the learning process.
The problem is this ... When the "next" button is clicked I check to see if it moves the user to the last step in the wizard and change the value of the button to "Finish". I also need to change the click event's delegate so it submits the form. In Prototype, I'd just use bindAsEventListener. Is there something similar in JQuery I can use?