[jQuery] [jQuery][SITE] Spoted in the wild http://www.muzejistorijejugoslavije.org.yu/index.php
This is one of the most significant institution in Serbia. They use tabs and thickbox
[jQuery] Accordion v1.5 and interface together cause accordion to stop working
Hi, I am trying to use accordion and interface on the same page and the accordion will not work. On line 177 of the accordion file the execution goes to the interface file when it is included. If I remove the interface file from the page line 177 of the accordion jumps to the jquery animate function. Any ideas on what is going on? Thanks, Jason
[jQuery] Passing arguments to Hover and Toggle??
Is there a way to pass arguments from one anonymous function, (in either Toggle, or Hover) to the second? Ideally I'd like to be able to pass in whatever variables I choose, but I'd settle for being able to pass in $(this), the item that triggered the event. Here's the code: // I have a set of links which show/hide items on a chart $('a.display').toggle(function(){ var size = $(this).attr('href'); $('.' + size).hide(); },function(size ){ // can I pass "size" through to this second function? $('.'
[jQuery] How to have two javascript dynamically loaded jcarousel on one page ?
Hi, i'm using the fantastic jCarousel script on my page. I copied the full code for one carousel twice, changing That gives me : var mycarousel_itemList = [ my vars]; function mycarousel_initCallback(carousel) { // Disable autoscrolling if the user clicks the prev or next button. carousel.buttonNext.bind(\'click\', function() { carousel.startAuto(0); });
[jQuery] docs.jquery.com not accessible
Hi, <a href="http://docs.jquery.com">http://docs.jquery.com</a> is not accessible. I am in India. It's like the lifeline is down :( g<br clear="all"> -- Gurpreet Singh
[jQuery] A Newbie Question
hi , i am new to jquery and this group. i am learning to use jquery as i am finding it very cool and easy. i have question how can i show the loading indicator with load function i am using this simple code $("#field").load("test.php") <div id="field"></div> Thanks
[jQuery] Some jQuery Questions
Now that getting a handle on the JS/jQuery language, I have these basic questions 1) For an JSON object, how do you get the key name? Example var json = {field1: "data2", field2: "data2"}; I know how to get the data, but how do you get the field names? IOW, I want to get the names of the keys. Is there a method that traverses the JSON and returns key/value? Do I need regex() or is there a more direct method? 2) Best way to create a toJSON() string or object. I didn't see a direct way to do this,
[jQuery] Document Ready - It lost me!?
Whoa! I thought I was beginning to understand this stuff, and then......... Ok, I thought that this piece of JS code in the <head> tag like so: <html> <head> <script type='text/javascript'> (function($) { ... Does it see HTML tags? ... })(jQuery); </script> </head> <body> .... html tags .. </body> </html> That the whole purpose of (function($) {...... })(jQuery) was so it ready to work as soon as the HTML tags are ready? I have to move it the JS to the affter the tags. <head> </head> <body> ....
[jQuery] JQuery and Internet Explorer = trouble
Hello, ive been trying to set up some effects with jquery, but unfortunately it only woks in FF, not in IE (6 or 7). I just cant see what im doing wrong, since the elements are NOT generated dinamically. What happens is IE just ignores the events... On the main page, i have a few menus, which depends on Ajax. When the user chooses any option, the element below will get populated by ajax. But it doesnt work in IE. http://www.carango.com.br/preview/index.php Ironically... THIS works both in IE and
[jQuery] The Mitchies. Rating the Best GUI Plugins
The Mitchies. Rating the Best GUI Plugins My interface is an example of what a novice non programmer can do using jQuery and a number of its best plugins. The goal was to build a GUI that contained a large number of web 2.0 features, meaning controls that gave a desktop experience inside the browser. Besides wanting to upgrade my very popular avian search engine (http://www.whatbird.com), I wanted to see how far I could go, how many controls could I use to make my GUI inviting and modern. I also
[jQuery] Is there checkbox/radio image plugin?
Hello, Is there any checkbox/radio image replacement plugin for jQuery? Like on this page: http://mootools.net/download Thank you.
[jQuery] accessing html() attributes inside an event
hi, I would like to do something like this ... $('td[@id^=customer]').click(function(e){ alert(e.target.html()); }); but it's not working ... can I avoid this ... $('td[@id='+e.target.id+']').html() Thanks james
[jQuery] Username Checking
I have the following code. <!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=ISO-8859-1" /> <title>Labs</title> <link rel="stylesheet" type="text/css" href="../css/main.css" /> <link rel="stylesheet" type="text/css" href="../css/blog.css" /> <link
[jQuery] changing url querystring in document.ready onclick
Is there a way to change the url in the browser's address textbox everytime there is a click or other event?
[jQuery] what is $.param?
Why can't i find the $.param in the manual?
[jQuery] Close Thickbox Window Link that Doesn't Refresh Parent Page
I want to have a link that says close this window inside my thickbox window, but I don't want this link to do anything but what would happen if you clicked outside the thickbox window in the darkened area. Is there simply a class that I can add to this a element that would do this?
[jQuery] jqModal content overflowing -- scrollbars?
Hi, First off, Brice, great work on jqModal. It's the just-about-perfect solution to my AJAX popup window that can interact easily with the calling page. I have one question on how to size the window with content constraints... I'm using it to call up a directory and display a list of files, one per line. Some of the directories can get pretty big: 100-200 files (lines) or more. The jqModal window stretches to the bottom of the screen, but does not scroll within itself. Scrolling the parent has the
[jQuery] moreSelectors plugin syntax issue?
Hi all, I'm using the jQuery Form plugin by Mike Alsup and jQuery More Selectors here: <a href="http://www.softwareunity.com/sandbox/JQueryMoreSelectors/">http://www.softwareunity.com/sandbox/JQueryMoreSelectors/ </a> I have a callback function which I'm calling with the following syntax: function validate() { // ensure something is at least filled out. if ($('#form2:modified')) { $('#error').show("slow", function(){ setTimeout("$('#error').hide('slow')",
[jQuery] next() problems
What I'm trying to do is when someone clicks on a h4 heading the next one has a class (top) added to it. In between each heading there are other elements. The h4s are inside a div called 'faq'. So far I've tried: jQuery('div.faq h4').click(function() { jQuery(this).next().addClass('top'); }); And: jQuery('div.faq h4').click(function() { jQuery(this).next('h4').addClass('top'); }); Neither works and I can't figure out why? If anyone could help, that would be great! (I'm using jQuery instead of $ because
[jQuery] Problem dragging forms
Hey everybody! I'm new to JQuery and have been searching the net for info on the easydrag plugin, but nothing seems to help. My problem is pretty simple: how do you put a form into a draggable div? Once the div is set to be draggable, you no longer have access to the form fields for entry. I've tried triggering easydrag on a mousedown of a header within the div, but once it's set, it's set. Is there a way to turn features like easydrag on and off? Is there another (easier/better) way to accomplish
[jQuery] 'Could not set the selected property. Unspecified error' under IE6
Hello, I'm experiencing problems with the function below, called in the $ (document).ready handler under IE6. Here is the context: #CtxForm contains 2 select boxes, one called #PlantCtx and one called #PlantID. When #PlantCtx is changed, it populates #PlantID with the related options, with the following function: function myChangeCtx() { var i = $('#PlantCtx').fieldValue(); var Plants = $('#PlantID'); $('#PlantID > option').remove(); $.each(plants[i].plants, function(id) { Plants.append($.create('option',
[jQuery] Stop Default Event
Are there anyone who have a snippet to really prevent the something is fired. Sometimes my "return false" doesn't work on FF, IE6 and IE7. hehe =( And i see mootools can do something like this: <pre class="javascript">e.<span class="kw3">stop</span><span class="br0">(</span><span class="br0">)</span>; </pre>-- Rafael Santos Sá :: webdeveloper <a href="http://www.rafael-santos.com">www.rafael-santos.com </a>
[jQuery] check uncheck
I need the check of a checkbox disable other inputs and change value to others. Here the code: //click on keep prop cancel unnecesary fields $(document).ready(function(){ $('#keepProp').click(function(){ state = $('.percent').val(); if (this.checked){ $('.depend').attr({disabled:'true'}); $('.percent').val('%'); } else { $('.depend').attr({disabled:'false'}); $('.percent').val(state); }; }); }); Works fine if
[jQuery] jQuery and Mootools Problem
Hi, i use jquery and mootools. But i have a problem, after loading the site, i became an js error this.$events[type].keys has no properties mootools.v1.11.js Line 2878 Here is a screenshot: http://gfx.kj187.de/jqueryMootoolsProblem.tiff Has anybody an idea ?? regards kj187 (julian)
[jQuery] What can add an effect to this rotate?
Hi all, I was curious, is there anything jQuery has available that can take this single image rotater and add an effect to it? Something that slowly fades in the next photo? An example of what I'm trying to apply this on is <a href="http://devel.phpgeek.org">http://devel.phpgeek.org</a>. If someone can point out what I can reference or read in documentation for this, that'd be great. Thanks! - sf
[jQuery] JCarousel not auto-starting
Hi all, I've got a list of about 13 images which I want to scroll horizontally using Jan's excellent jCarousel. I want it to auto-scroll three at a time, same as the example on his site: http://sorgalla.com/projects/jcarousel/examples/static_auto.html However, when I set up my list and use it's ID to jCarousel, like the one in the example: $("#myListID").jcarousel({ auto: 3, wrap: "last" }); It doesn't move automatically. If I allow the buttons to remain in place then I can use those to scroll left
[jQuery] Release: Accordion 1.5
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body bgcolor="#ffffff" text="#000000"> I'm happy to present you a new release of my Accordion menu plugin for jQuery. Thanks to some essential help from John Resig on animations, this may be the first release that is actually worth its code. And its the last release as a standalone plugin (stay tuned). If you are already using the plugin: An update is highly recommended. Otherwise, why don't you give it a try?
[jQuery] Repeated AJAX calls
I have a "wizard" setup that allows the user to create a line of text based upon options chosen. I then write this line to the screen. All of the text they did is saved at the end by clicking on the save button. Some users are not smart enough to click the save button and all of the work they did is erased. So I went ahead and tried to have it save to the screen AND save to the database via AJAX. Basically I just do an AJAX call to save all of the text everytime they add a new line, or edit a previous
[jQuery] [NEWS] Cool Refrigerator Magnet Demo
Ben Nadel has come up with a VERY cool demo to simulate a refrigerator magnet using ColdFusion for dynamic image generation and jQuery for DnD. Whether you're into ColdFusion or not, its definitely worth a look and can certainly be migrated to other server-side languages that support some form of dynamic image generation. Be sure to check it out: http://www.bennadel.com/blog/935-jQuery-ColdFusion-8-Erotic-And-Magnetic-Poetry.htm Rey../
[jQuery] Running a Function After All other Javascript is Loaded
Here's what I am doing currently: setTimeout("expandMenuUsingCookie()",550); But, I'm sure there is a better way than that. Can anyone share a better way to run code last?
[jQuery] jCarouselLite with thickbox
Hello!! i am new in jquery world and am greatly impressed by the effect that we can create using jquery pluggins. i have a question, i hope i am posting at right place.. i have developed a site and used jquery pluggins in that site. i have used jCarouselLite for image rotation and then used thickbox for each image,, so that if user clicks on that image,, some information is displayed. i have slightly modified the jCarouselLite,, so that when user hover mouse over the image,, the rotation stops and
[jQuery] Table row drag and drop
Hi ! I've written my first plugin ,which is only tested with firefox currently. It allows ordering of table rows with drag and drop and selection of multiple rows (select first one, then shift+click select and) and moving of this block. I've started it because the dnd of the interface library didn't work for me. it completely broke the table. The plugin is in an early stage, so there are some glitches every now and then but mostly it works. You can find a demo page at: http://www.jowenn.net/opensource/jquery/tablerowdnd/
[jQuery] jQuery (Turkish)
jQuery users from Turkey came together to share their knowledge. The group address is http://groups.google.com/group/jquery-turkish and also can be accessible on http://jquery-tr.com We are waiting for all Turkish users. Regards,
[jQuery] Problems with IE after a jquery load
Hello I have some problems with the behaviour of IE 6, the code i wrote works ok in Firefox. I have an initial php that calls a load of another php file into a div when dom is loaded. All Ok. Inside this second php file, which is loaded in the div, i have more <script> tags that call jquery functions, like a fadeOut of the div with tags. So, the fadeIn works in Firefox and IE, but the fadeOut called from the loaded php file doesnt work in IE Someone could help me with this? Thank you! Pedro -- View
[jQuery] Form Input Lookup
Hello, please do excuse my lack of knowledge with JS and JQuery but i have attempted to avoid everything JS for many years as i just did not like it. Although JQuery did make some simple aspects more manageable i still try to avoid it... but sadly now i need to work with AJAX to make aspects of a project more simple for its users :D I am currently trying to create a Username Look up function with JQuery and i am trying to learn how to do this by hacking up the jquery.autocomplete plugin i stumbled
[jQuery] Best of both jquery validate and jqueryyav
Hi I have a dilema between jquery validate and jqueryyav. I am using validate which offers great flexibility in the error placement, because I can pass a function to it : errorPlacement: function(error, element){ .... jqueryYAV offers the "implies" that I need, but I cannot pass a function to the error placement. Its showError method looks like that : <pre>evalText = "jQuery('#"+ objError.id +"')." + params.errorPosition + "(\"" + "<" + params.errorTag + " class='"+params.errorClass+"'>" + objError.msg
[jQuery] [ANNOUNCE] New Simple Array manager plugin
Today, I've released a small bit of code that I have been working with. I needed an easy way to track my arrays, and be able to pop and push data in to them, so i created the jQuery simple array manager: http://digitalspaghetti.me.uk/index.php?q=node/31 To use the manager, you first need to create your 2D array: var myArray = $().arrayMan({width: 6, height: 6}); You can then pop data into any x/y position within the array: $().arrayPush(myArray, 'This is the data I want to insert', {x:0, y6}); To
[jQuery] Memory leak?
I have a strange behaviour (jQuery 1.1.3 /1.1.2). I have a screen with a lot of ajax call. That works fine in local test environment (same machine server-client) or when the net is quick. However I when I put it in our intranet there are a machine (win2000 ie6) that some times have memory leaks. I have checked the cpu and is not at 100%. I check time consumption for the server calls and this machine (I suppose that we have some net problem) is very slow. I don't know how afford this issue in order
[jQuery] What's wrong with my coding?
Hi, I added the click event to a few <a> and they work perfectly fine, but when I try to do it with a FOR loop, it doesn't work anymore, does anyone has any idea about it? Thank you. /* works well */ $("a#1-a").click(function(){toggleTab(0);}); $("a#2-a").click(function(){toggleTab(1);}); $("a#3-a").click(function(){toggleTab(2);}); /* doesn't work */ var k=0; for (k=0;k<totalNumberTabs;k++) { $("a#" + (k+1) + "-a").click(function(){ toggleTab(k); });
[jQuery] jdmenu and css issue?
http://www.kaizendigital.com/index2.php I don't see anything wrong with my code of jdmenu codee(css wize) but when using jdmeny and am image on top there is a small space between the image and jdmenu, can anyone help me as css is not my strongest area dn it is driving me crazy. -- View this message in context: http://www.nabble.com/jdmenu-and-css-issue--tf4354044s15494.html#a12406408 Sent from the JQuery mailing list archive at Nabble.com.
Next Page