CrossSlide - Can't get it to show images
First up: I'm very new to using jQuery. I've been trying to implement the CrossSlide plug-in on a new site I'm building. This is the code I have in the <head>: <style type="text/css"> <!-- #cross { height: 500px; width: 860px; display:block; } --> </style> <script type="text/javascript" src="css-js/jquery-1.5.1.min.js"></script> <script type="text/javascript" src="css-js/jquery.cross-slide.min.js"></script> <script> $(document).ready(function() { $('#cross').crossSlide({ sleep:
Simulate adding a draggable to a sortable programatically
Hi All, How to add a draggable to sortable programatically ? <script> $(function() { $( "#sortable" ).sortable({ revert: true }); }); $(document).ready(function() { setTimeout(add(), 3000); }); function add(){ var $obj = $( "<li class='ui-state-default' id='d7' >Item 7</li>" ); $obj.draggable({ connectToSortable: "#sortable" }); $obj.appendTo($('#sortable')); } </script> </head> <body> <ul id="sortable"> <li class="ui-state-default" id="d1" >Item 1</li> <li class="ui-state-default" id="d2">Item
jQuery: question about autocomplete and keys.
Hi, I have a multiple select and an autocomplete input. Each time the user insert an element in the autocomplete input I would like to select the corresponding element in the multiple select. I have this code: jQuery("#example") .autocomplete('autocomplete', jQuery.extend({}, { dataType: 'json', parse: function(data) { var parsed = []; for (key in data) { parsed[parsed.length] = { data: [ data[key], key ], value: data[key], result: data[key] }; } return parsed; } }, {multiple:true}))
jQuery Datepicker (keith-wood) datepicker div not sizing right?
Hello to all! I've run across a CSS (I'm assuming) issue that for the life of me, I can't figure out. But then again, I'm not the most skilled layout artist around either. I'm using Keith Wood's Datepicker plugin, and it is wonderful. I am using it to create an inline calendar to pick dates from inside a static-width div contained inside a table inside a jQuery UI Dialog. I might be doing something wrong, but the "datepick" div that Datepicker creates to house itself in sets its width inline to
[MultiFile] Problem changing default values
Hi, i'm using the multifile plugin to handle multiple uploads. The upload process works but i can't change the default values. this is the code i'm using for the input field <input type="file" name="FILE_NOME" id="FILE_NOME" size="chars" class="multi" accept="pgp" /> and here's the javascript code: $(function(){ $('#FILE_NOME').MultiFile({ STRING: { remove: '<img src="/pinloader/img/delete_icon.gif" height="11" width="11" alt="x"/>' selected:'Selezionato: $file',
jParallax. How I can change default values on click?
Hi, I have this - $('.parallax').jparallax({mouseResponse:true}, {}, {}); And I need change mouseResponse to false after click on the link - $('a.goto').click(function(){ }); hepl me please ( upd: ----------> http://infostend.net/site/organization.html (work in firefox and chrome) I use this plugin to scroll big div`s in small one. And I want to stop this plugin (stop any scroll) after click on the link below. f. ex. html: <div id="content" class="parallax"> <div style="width:3466px; height:1233px;">img
i see the json with .php but not able to see in the data table
Issue with the datatables pulgin. I am able to create the server side php file and when i run that file, i see the json formatted data. I did check tht with the http://www.jsonlint.com/. Can any one guide me how to get the data into the template. I have used the same table structure mentioned in the examples_support from data Tables-1.6 version. I am very new to java and jquery :)
conflict with superfish and flot
I'm using the stable version of flot (0.6) and superfish (1.4.8) on the same page. When I have a pulldown superfish menu with items that should display over the flot graph, flot stays in the foreground. It seems this is a problem with superfish, but I'm new to jquery so I was hoping for some debugging tips. I'm using the basic superfish example and a simple line graph with jquery. Thanks.
Validate matrix columns and rows
Hi, I'm trying to validade a table that has 20 checkboxes (5 columns and 4 rows) and that needs to have at least 2 checkboxes checked in each row and column. I've managed to create the validation for the row part (all checkboxes in the same row have the same name). I've also created a custom class rule (all checkboxes in the same column have the same class) but it doesn't seem to work. It only shows the row validation messages (labels that are display next to the last cell in each row) and not the
Trying to pass dynamically created set of markers to goMap
The client is a realtor with a non-standard intranet which is a "conferencing" system with a very interesting built-in web server (FirstClass). They post property listings to conferences as email messages, with the property address as the message subject. I'm trying to place the addresses on a Google map using the goMap() plugin. I've figured out how to read the conferences and extract the addresses to a web page, either as well-formed JSON or as a string formatted exactly as one would hard code
CONTINUOUS REEL SLIDESHOW
I don't get it, where's the Continuous Reel Slideshow code: http://plugins.jquery.com/project/continuous_reel_slideshow? Is this thing any better than http://developer.practicalecommerce.com/articles/1840-Full-360-Degree-Product-Image-Rotation-in-JavaScript? Confused? you will be..!
Accordion Panel Size
Hello, I have another question about the accordion plugin. I have 3 panel with different lenght of text, I don't want to have the scroll in the panel since in IE does not work. It's ok to me to have the same pixel height for each panel but how can I set the height of the panel deciding not to have the scroll bar? Thank u very much
Cookie expiration date not being set right?
Hello all, I need some quick help with one of my scripts. It's supposed to set the expiration date of all the cookies on my page for one year, but it's not working. I know it's not working because Safari lets you see the expiration date for each cookie set on a page, and it didn't show it for the elements being set on my page. I'm using jQuery for this, so heres my one script: var currentRotation=null; function checkOrientAndLocation(){ if(currentRotation != window.orientation){ setOrientation();
Better control over Autoscroll
I developed an application that uses Autoscroll and combines some other plugins and custom jquery. I am looking to harness the autoscrolling a little bit better. The main issue that I am seeing is that when a video or slideshow (Flash slideshowpro, or youtube embed) feature is clicked and the video or slideshow begins playing in a simple lightbox (custom developed - iframe), the video/slideshow is very choppy. I believe (but not sure) that this is due to the browsers resources being used up on the
jQuery Cycle 1 pixel shift after animiation
I am using cycle to animate 4 div's on a website I am working on. On some versions of IE 7 and 8 as the cycle plugin animates between 'slides' it appears to shift the slide 1 pixel to the right then back 1 pixel to the left. Here is the site: http://westfield.peex.co.uk/ I cannot get to the bottom of this issue as the CSS all validates and I have implemented the cycle plugin correctly. Any help would be really appreciated as I am now stuck for a solution.
Adding a draggable to a sortable
Hi All, How to add a draggable to sortable programatically ? <script> $(function() { $( "#sortable" ).sortable({ revert: true }); }); $(document).ready(function() { setTimeout("add()", 3000); }); function add(){ var $obj = $( "<li class='ui-state-default' id='d7' >Item 7</li>" ); $obj.draggable({ connectToSortable: "#sortable" }); $obj.appendTo($('#sortable')); } </script> </head> <body> <ul id="sortable"> <li class="ui-state-default" id="d1" >Item 1</li> <li class="ui-state-default" id="d2">Item
Fancy box gets hidden in frames having a pdf
I am using frames which has a dynamic PDF showing in it. There is a link on the left menu frame that opens up a fancybox. Looks like because of the pdf the fancybox gets hidden behind the pdf and is not visible. Is there a way to bring the fancybox completely to the front
Evaluating scripts in jQuery Ajax form submission response
Hi all, I am using the jQuery ajax form submission plugin, from http://www.malsup.com/jquery/form/. In my current application, when a form is submitted using this plugin, in response, I will get HTML page content, with lot of scripts in it. And this plugin is automatically loading the HTML contents into the target element using the $.html function. but not evaluating the scripts in the response. So, validations and other functionalities are not working in the loaded HTML page. Is there any
jQuery Form Plugin with file upload: succes callback not triggered
I'm using the jQuery Form Plugin in a Java application to upload a file. This works fine for the most part: my form gets submitted and the proper servlet executed, allowing me to save the form data including the uploaded file. I'm struggling with the after submit handling though. If I understand it correctly, in case of a file upload I must wrap my json response in an html <textarea>. What I don't grasp, is how to proceed from there. How do I obtain the response in my js script and handle it there?
cant get jquery lightbox to work
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Untitled Document</title> <link rel="stylesheet" type="text/css" href="portfolio.css"/> <link rel="stylesheet" type="text/css" href="style.css"/> <link rel="stylesheet" type="text/css" href="magicalHover-01beta2.css"/> <link rel="stylesheet"
jquery validate
hello world, I'm french and I do not speak very good English. Excuse me in. how to have the opportunity to put a basic text(first value), like "enter a field" in an input and that the validator regarded as if no one had put. like this
jquery validator. I need a help !!!
hello world, i'm french, and i don't speak a very good english. excuse me in. How to ask the validator does not take into account the default value of inputs, such as "Enter a field " and to act as if it was empty? Concluded that when the value is "Enter a field" that the validator gives me "This Field is required! thanks
Cycle Plugin Propertys
Hye, Iam using the cycle plugin with a 'scrollRight' as the FX. Is there a property that allows me to slow down the transitions when they are ending. Just like the "easyOut" in Flash that can be set with a value (0-100%) that slows down the animation more and more as it reaches the end. If so..Whats the name of the property and are there any extra plugins required like "Easing Plugin". Any help would be great!!
Call a jquery plugin method once started?
Hello, I'm using a jquery plugin that create a fance dialog box when clicking on a lick http://plugins.jquery.com/project/simpledialog it works really well. But what i'm trying to do it's this: - i click on a link --> it loads that the dialog via a ajax call (href="test.html") - the content of test.html is loaded and poped - in my html coontend i have put and other link (lets say: <a href......blbla> I would like. that when i click on that lick the onclick method close the popup. the close method
Problem placing validate error message
Having difficulty getting one specific fieldset to display the error message. Here is the structure of the problematic fieldset <fieldset id"SomeID"> <ul class="someClass"> <li><label><input type="checkbox" name="someName" id="someName">I AGREE</label></li> <li><label>ELECTRONIC SIGNATURE REQUIRED*<input type="text" name="someName" id="someName"></label></li> </ul> </fieldset> It is applying the error class to the label and not displaying
jquery cycle with carousel
Hello, I'm having some problems with jquery cycle pagerAnchorBuilder, when I initiate the carousel functionality the cycle pagerAnchorBuilder is not working, demo here: www.siljamagg.com/slide-demo/ the code looks like this. $('#slideshow').after('<div id="carousel-test"><ul>').cycle({ fx: 'scrollHorz', speed: 400, prev: '#prev', next: '#next', after: onAfter, timeout: 0, pager: '#carousel-test ul:first',
How can i change specific image links if the image is in javascript?
hello my site is www.islamobec.com i have one "next" navigation link in javascript that control all the images with multiple sliding panels in the same page. for example how can i place the following image: images/2box_arrow2.gif for my second sliding panel "next" navigation arrow??
jQuery.validate file upload
Hello, I`m using the jQuery.validate plugin from http://bassistance.de/ . I would like to add custom <input type="file" /> validation to my script. <script type="text/javascript"> $(document).ready(function () { $("#name,#file").addClass("required"); $("#preventspam").addClass("required digits"); $("#email").addClass("required email"); $("#telefon").addClass("digits"); $("#contact").validate({ errorLabelContainer: $("#contact div.error")
jQuery Cycle with png file
Hi gys, I using the jquery cycle plugin with png files, but in IE8 the transparence of the image png not works... How to resolve this problem? http://portal.colegioantoniovieira.com.br/sitecav/
Coda Slider - Problem with slider.siblings
Hi, I'm having a problem with the Coda Slider plugin for jQuery. Being a JavaScript novice, I have no idea how to solve the problem myself. So... any help would be most appreciated. The demo example I'm working from can be found here: http://www.ndoherty.biz/demos/coda-slider/2.0/ I'm using Example 4, without the hard-coded non-dynamic navigation. Here's my code: ===start=== <div class="box-footer"> <div id="coda-nav-1" class="coda-nav"> <ul>
How to capture Next/Prev Event of JQuery Calendar
Dear All, I want get the current month when user clicks on Next/Prev on Month Calendar of JQuery. My Jquery code for calendar is this:- $(document).ready(function () { var date = new Date(); var d = date.getDate(); var m = date.getMonth(); var y = date.getFullYear(); $('#calendar').fullCalendar({ theme: true, header: { left: 'prev,next', center: 'title', right: 'prev,next' },
jquery slideshow transition
I have slideshow using jquery here, http://boscoits.com/layola16aug/ Is there any way, I can add "transition" like http://nivo.dev7studios.com/ How can I modify my script to have like that?
Validation Plugin
I have a web page with multiple div's each individual div can be submitted with ajax but each div is not wrapped in a form tag. Is there anyway to use the validation plug in without having to wrap the content of my div in a form tag? Each individual div will have a save button or link that I would like to trigger the validation but the trigger should only validate it's container div.
validate on mouseout
Hello, I am using the jquery validate plugin. It works but I am trying to get each field to validate on mouseout. This works if you have text in a field but it doesn't validate if your field has nothing entered into it. I am trying to to make my form show validation errors if someone tabs through a textbox or clicks on it and moves to the next one without entering anything or an invalid input. Thanks for any help, Bryan
jquery.form.js anyone have an uncompressed, unminified copy of version 2.01?
i'm trying to debug why a drupal module i'm writing crashes when two unrelated modules are enabled at the same time. i have narrowed it down to the jquery.form.js file after a long process of elimination. but the copy that comes with drupal 6 is compressed and is version 2.01, and one of the modules that is causing the problem replaces it with a much more recent copy. to learn more specifics, check out my post here: http://drupal.org/node/1073216 that is the issue queue for a module that my module
jQuery Accordion not working in IE7
Hi I've tried various other ideas posted here but I cannot get this working in IE7. Sample page : http://t4ls.co.uk/courses I am aware there can be issues in IE7 with <div> tags inside <a> tags .. I tried replacing all the divs with span but no success. Any help appreciated. Cheers E.
How can i hover a link which is in a .js file?
hello my site is www.islamobec.com How can i make my navigation arrows hover by replacing them with the following image: images/box_arrow_hover.gif thanky you
How can i load my content dynamically?
I just built a jquery -carousel plugin how and what is the best way to download its content dynamically? thank you
Cycle - centre different sized images AND prevent flash of unstyled content....
Hi, I'm new to jquery, so please forgive any obvious mistakes! I'm using the cycle plugin to create slideshows on a photographer site. The problem I'm having is that some of the images are quite large and also high quality so the 'flash of unstyled content' is really noticeable.... Also while most of the images are landscape, some are portrait oriented and some are square, so it's really noticeable if they're not all centred . The solutions on the cycle website for these two problems (here) seem
Form plugin - ajaxSubmit and ajaxForm on button elements
Hi, Newbie question -- I'm trying to bind the click on <button id="save">Save</button> element to ajaxSubmit or ajaxForm instead of the standard <input type="submit"...>. But this code doesn't seem invoke showRequest function: var options = { target: '#output1', beforeSubmit: showRequest, success: showResponse, dataType: 'json', error: function(xhr, error){ console.debug(xhr); console.debug(error); } }; $('#save').click(function() { $("#myForm").ajaxSubmit(options);
Next Page