Tagged Questions
0
votes
0answers
14 views
jQuery countdown timer (jcountdown1.3 countdown - webmuse) is not counting down
Here is my code:
var now = new Date();
var newDateObj = new Date(now.getTime() + 30 * 60 * 1000)
$("#countdowntimer").countdown({
date: newDateObj.toGMTString(),
htmlTemplate: "%{m}:%{s}",
...
0
votes
2answers
38 views
How to disable dates in jQuery datepicker?
I have 2 datepicker for filling checkin text box and checkout text box. I have to enable only checkin+13 days in checkout datepicker.
What I tried is-
$("#Chkin").datepicker({ dateFormat: ...
1
vote
0answers
23 views
jQuery Load ajax method not loads calender plugin
Jquery Code
$('#afterServiceSelect').die('click').live('click', function () {
var petKeys = $('#pets input:checked').map(function () { return $(this).val(); }).get().join('+');
...
-1
votes
2answers
21 views
How do add delay time in (jquery) ascensor.js?
How do i add 'delay' option to move to next slide after clicking? Anyone tried?
Below is the plugin website.
https://github.com/seekvence/ascensor
Thanks in advance.
0
votes
1answer
22 views
Pagination error while using datatable
i am using jquery datatable plugin. its working fine except for the pagination part.its showing 1 to 10 records(filtered from 22000 records).since there is only 10 records the next and back buttons ...
0
votes
1answer
21 views
How to return values from a jquery plugin?
How can I return some values from a plugin?
Here is my plugin,
(function($){
$.fn.extend({
get_authentication: function(options) {
var defaults = {
file: ...
0
votes
3answers
38 views
jquery .html(' <%jsp scriplet%>');
I would like a for loop in jquery using .html()
like this:
.html('<select property="doctype" name="doctype"><%for (String number : list)
{%>'<option ...
0
votes
1answer
35 views
Add autoplay to jQuery slideshow
Currently I have four pages that are full-width landing pages. I would like to add funcionality that will enable auto play. This will change the functionality to be more like a slideshow and less like ...
0
votes
4answers
44 views
How to remove one of the image elemnt inside div using jquery
i have element div with id="akbarslide". There are four images inside.
<img src="image_suspetio/garbage.jpg" alt="garbage.jpg" width="270" height="250" />
<img src="image_suspetio/dog.jpg" ...
-4
votes
1answer
117 views
Drag and drop image upload Jquery [closed]
Any jquery plugins or raw code available for "drag and drop" image uploading? Like as we see in Gmail file attachment.
2
votes
1answer
59 views
jquery how to keep settings after page reload using filtrify plugin?
First of all I would like to say that I have done my homework. I understand that javascript isn't supposed to keep it's settings after page reload.
I also found 3 ways how this could be done:
1. ...
0
votes
0answers
33 views
file tree script parameter using javascript how do i pass html code to file tree
$(document).ready(function () {
$('#fileTreeDemo_1').fileTree({ root: '../../demo/', script: 'connectors/jqueryFileTree.aspx' }, function (file) {
alert(file);
});
});
...
-2
votes
1answer
58 views
playing a sound through javascript when button has certain value [closed]
I would like a Javascript solution to play a certain sound when the text of a button has a certain value.
I haven't tried this type of functionality using jquery or javascript. Can anyone guide me ...
0
votes
5answers
52 views
I want to move button left-right and right-left using jquery
I am able to move button to left side but after that how i can again move it to right side.
Can i also use delay here.
Here is the code that i have tried:
$(document).ready(function () {
...
0
votes
1answer
33 views
Asual $.address - how to get rid of hashtag
I'm using Asuals jquery plugin $.address
everything is working but the url still provides hash tags in it
$("#ulSideNav a").address(function(){
return $(this).attr('href').replace("#/", '')
});
...