Conflict between UI Date Picker and Fancybox
I had the datepicker workng just fine but when I installed Fancybox the datepicker is now not showing the icon and is trowing an error. Any ideas? It appears to me that the "$(document).ready(function()" from the fancybox is overwriting the one from the datepicker.
[jQuery] IE no error tracking, jquery not working
From what I have seen, I have run into a fun error to get. It seems that something to do with my jquery is breaking IE, but I cannot find out what it is. So far the code works fine in every other browser, except IE. Of course, to make it more confusing, jquery on some previous pages does work, just when we get here some conflict occurs and nothing works. So, I guess first question, does anyone have a way to debug IE excecuted jquery? Something like Firebug for IE? Secondly, I have some code here
[jQuery] [tooltip] help please
am not getting the stylized popup window (generic yellow box instead). all files in my server root folder. please help this newbie; this in head: <script type="text/javascript" src="jquery-1.2.6.min.js"></script> <script src="jquery.bgiframe.js" type="text/javascript"></script> <script src="jquery.tooltip.pack.js" type="text/javascript"></script> <script type="text/javascript" src="jquery.tooltip.min.js"></script> <script type="text/javascript" src="jquery.dimensions.js"></script> <link rel="stylesheet"
[jQuery] Superfish won't show over innerfade
www.ashwebdev.com/bulletin Subject says it all, can't get Superfish drop downs to display over the InnerFade plugin - This is in IE only, works fine in Firefox.
[jQuery] $('#foo p') or $('p', $('#foo'))
I watched the John Resig presentation too and learned that CSS selectors always work from right to left. That would mean that doing this:: $('#foo p') Would extract all tags and from that list subselect those who belong to #foo. Suppose you have 1000 tags of them only 100 are inside #foo you'll have wasted 900 loops. Surely $('#foo') is the fastest lookup possible. Doing it this way will effectively limit the scope of the $('p') search and you will never be bothered about any tags outside #foo. Or
[jQuery] Is jquery suitable for this...
Hi! I am exploring different options to write a new program and would like to get some ideas from the group is this way of doing things makes sense... I have a main page and an iframe inside that page. We want to keep the iframe code very small (because this is a ssl page and javascript wont cache), so my idea is to load the jquery_ver.js on the main page but use all jquery functions from inside the pages in the iframe. This is because the top page will be loaded only once (with menus etc.) and will
[jQuery] ANNOUNCE: jQuery ListNav plugin 2.0
Hi All, Today we've released a new version of the jQuery ListNav plugin that we released in late 2008. This plugin creates a letter-based navigation bar (ie: A | B | C | etc.) for any UL or OL list. Clicking a letter in the navigation bar filters the list to show only items that start with the letter. When a user hovers over a navigation letter, an optional 'count' appears above the letter, signifying how many items are under that letter. Letters that have no items under them appear as "disabled"
[jQuery] TableSorter Plugin Question
Hi I am wondering I want to use jquery to add some rows when a person say adds some stuff. I would like to know if I add it like this(through jquery javascript) will the tablesorter be able to figure out how to sort it(ie when some presses the header columns will this new value get stored) or do I to do something to get it to work? -- View this message in context: http://www.nabble.com/TableSorter-Plugin-Question-tp22282466s27240p22282466.html Sent from the jQuery General Discussion mailing list
[jQuery] Superfish Sub Menu Posiions
Hi, With the Superfish Menu when selecting a child menu from a parent selection, the child menu lines up with the same level of the parent menu - is there anyway of relocating the child menu so that it starts from the top of the web page and not from the same position of the parent menu option? Assuming this is within the CSS but unsure what to do and whether it's possible. Thanks. Tony.
[jQuery] Superfish Slide with Mouse Hover - is this possible?
With relation to the Superfish Menu, i.e: I would like my Superfish vertical menu to slide out and in from the left hand side of the screen but what I would like is to display along the left hand side of the screen, in vertical fashion, the word "Menu" but running from top to bottom. So when the user hovers over the vertical word "Menu", the superfish menu slides out and the "Menu" word dissappears and when the user moves the mouse pointer away from the Superfish menu, the menu slides out and the
[jQuery] Can I apply Superfish drop shadow to top-level menu and other elements
I like the Superfish drop shadows so much, I would like to be able to apply them to other elements on my page as well. I can do this by wrapping the element that I want to "shadow" in an outer div, and writing a rule that assigns the outer div right and bottom padding, a background of the same image used by Superfish (I made that image wider and taller for versatility), plus the mozilla and webkit rounded corners, but I would like to be able to invoke it just by assigning the same class that Superfish
[jQuery] Using trigger for click event doesn't call click functions
I'm trying to bind the click event and turn click-gets into post or post (method=delete) to play nicely with Rails. Code in pastie below. Anyhow, it all works, but if I try to verify my results with $ ('#postable').trigger('click') the handler appears never to be called. Any thoughts are appreciated. http://pastie.org/402954 Thanks, s.ross
[jQuery] IE won't show changes made on $(document).ready?
Hello! I am doing the following in order to remove those new YouTube- Headlines on a blog: $(document).ready(function(){ $('param').each(function(){ var oldname = $(this).attr('value'); var check = oldname.search(/youtube.+/); if (check != -1){ var showinfo = oldname.search(/showinfo.+/); if (showinfo != -1){ var newname = oldname+'&showinfo=0'; $(this).attr('value',newname); } } }); $('embed').each(function(){ var oldname
[jQuery] Superfish - left, center, right justify
Hi Is there any way to left align. center or right justify the whole menu? (not the menu text in the titles but the whole menu in a table cell?) Many thanks Rax
[jQuery] Can't get tablesorter to work
Hello ... First, apologies if this is effectively a double post, I didn't see my initial message go through, but it might be google groups being bogged down. I'm trying to get tablesorter to work - it works AOK when I look at examples online, but not when I'm driving it myself. I'm trying to stick as closely to the example file provided as possible, and using tablesorter 2.0.3. I've tried using both 1.2.6 and 1.3.1 but in both cases nothing happens, I just get the plain HTML table. *Something* is
[jQuery] Sortable: zIndex conectWith IE7 - Sortable stays behind seond sortable li's in IE7(possibly others)
Hi there. I did a search for zIndex IE7 but didn't seem to find this issue in particular. Example: http://jsbin.com/ilira When a "li" is dragged from "ul.options" to "ul.rank" the "li" goes behind the rank "li"s in IE7 (and possibly other IE's I never checked). Why? How can I fix this?
[jQuery] help please. ajax call get status 0 and responseText null
here is source code. In my javascript function I use jquery to make a ajax call. myurl is a jsp in localhost which will output a xml. However i got status 0(not 200). What happen? $.ajax({ type:"POST", url:myurl, data: params, complete:function(XMLHttpRequest,textStatus){ alert("respons status "+XMLHttpRequest.status+" content: "+XMLHttpRequest.responseText+" header: "+XMLHttpRequest.getAllResponseHeaders()); } }); Here is the jsp: <%response.setContentType("text/xml");
[jQuery] append() strange behaviour
I am trying to do: $("#oneId > #anotherId").append(HTML); but it doesn't work. On the other hand, next line works: $("#oneId > #anotherId").remove(); What works for the first case is: $("#oneId div[id='anotherId']").each(function(){ $(this).append(HTML); }); I don't understand why "$("#oneId > #anotherId").append(HTML);" doesn't work. Thanks in advance.
[jQuery] Accordian
How can I change the default on the accordian to leave the Heading open that I've chosen instead of reverting back to heading one? I have 8 headings, heading 1 stays open with the content below When I click on heading 3 and select from the content below it defaults back to heading 1 Thanks, Minika
[jQuery] can jQuery support drawing items on a CANVAS? (e.g. web-based UML tool)
Hi, Question 1 - Can jQuery support drawing items on a CANVAS? I have a project where I would like to have a web-based means of displaying a simple topology diagram (image a simple UML diagram if you like). The ability to display it + ability to have right hand mean to trigger a call to a "add_a_new_element" dialog for example. If yes, any suggestions re best place to start digging in? Question 2 - Assuming the answer is yes to the above, would the jQuery support provide cross-browser platform capability
[jQuery] Internet explorer (7-8rc1) double event call
Situation: I have page with fewmages. Each image have two links dedicated to it. (one to edit and one to delete). Html for images looks like this: <div class="photo"> <input type="hidden" value="136"/> <div class="pPhoto"> <div class="pPhotoCover"/> <img src="path_to_image" alt=""/> </div> </div> <div class="pEdit"> <a class="psEdt" title="Edit photo">edit photo</a> <br/> <a class="psDel" title="Remove photo">remove photo</a> </div> </div> Edit/delete function called by this: $('.psDel').live('click',
[jQuery] test for css selector capability?
I'm working on a project where I need to detect if the browser natively supports a given CSS selector. For example, if I am using the selector 'ul li:first-child', this is supported by IE7, FF, and Safari but not by IE6 and below. Is there a way that I can test that selector to see if the current browser supports it? A feature that returns a simple boolean status would be awesome.
[jQuery] jQuery validtion plugin questions
I am trying to make sure that the three tablechoice fields are not equal to each other. I have set up a remote script to return "true" or "false" based on the field settings. If I select tables a,b and c the form subits as expected. however for example if it set them equal to a, b, and b and then changes the values to a, b,c it still thinks there is an error for some reason. Any thoughts on what I might be doing wrong? After clicking the submit buttons a few times it will finally submit. $().ready(function()
[jQuery] jQuery for Flex - a Behavior Injection Framework
jQuery for Flex - a Behavior Injection Framework http://code.seanhess.net/?p=156 [...] I’ve just finished my pre-alpha version of a Behavior Injection framework for Flex. It adds support for functionality similar to jQuery for flex, along with support for a more complete CSS syntax. The approach is slightly different than jQuery, and hopes to play along with Flex’s strengths as well. [...]
[jQuery] help please! I get status 0 and responsText is null
here is source code. In my javascript function I use jquery to make a ajax call. myurl is a jsp in localhost which will output a xml. However i got status 0(not 200). What happen? $.ajax({ type:"POST", url:myurl, data: params, complete:function(XMLHttpRequest,textStatus){ alert("respons status "+XMLHttpRequest.status+" content: "+XMLHttpRequest.responseText+" header: "+XMLHttpRequest.getAllResponseHeaders()); } }); Here is the jsp: <%response.setContentType("text/xml");
[jQuery] From plugin and submit
Hi When trying out the Form plugin (http://malsup.com/jquery/form/) I have this $('#myform').submit(function() { $(this).ajaxSubmit({ url: '/some/generated/value', }); return false; }); Which works fine, except the value of the submit button is not sent to the server. As I test for this value server side, it is a problem for me. Any easy way to include/set the submit button?
[jQuery] parent load question
Can someone explain how to do this, I'm trying to load the parent of an element (which will be a <td> cell) and then load the <td> with the html from a remote file kind of like so: var parent = $('#myelement').parent().load('http://test.com/ remote.html'); I have tried several other variations and the load always fails...no error messages, just doesn't seem to like it. It may have something to do with it still being a jquery object perhaps?
[jQuery] tablesorter doesn't sort negative currency properly
Hi, I have a column with values $4.50, $127.00, -$130.00, -15.76 and the sorting doesn't work. It works fine if all values are positive, however. Does anyone have any idea how to fix this? For now I just have to eliminate the "$" in order for it to work. Thanks, Jason
[jQuery] data object not included in clone?
When cloning and element, you can pass a boolean value of true to copy event handlers... what about the data object from jQuery? console.log($('<div/>').data('foo', 'bar').clone(true).data('foo')); --
[jQuery] jQuery.ajaxSetup({ success: ... }) behavior
Along with every AJAX callback, I'd like to ensure that the user session is still active. So I have the following:
[jQuery] Cycle Plugin and Loading Images
I have a question about the Cycle plugin. I have a slideshow with many large images. Is it possible to preload these or somehow load them at the time of the transition? I am just wanting to figure out a way so that all of my images don't have to load at the same time and cause long page loads. What about loading from a javascript array?
[jQuery] slideToggle function not working in IE6
I have something like this: $("#clickid").click(function() { $("#divid").slideToggle("fast"),function() { $("#divid:visible #txtfieldid").focus(); }); }); Basically there is a textfield inside a form inside the div that I want to focus when the div is shown, and the clicking obviously will toggle the div. This works fine in FF3 but in IE6, the content of the div not shown although the elements take up the space (and the entire page moves depending when the div is open or closed). However, just the
[jQuery] css method on span reports block?
Im not sure if this is intended, but it leads to some unexpected results: console.log($('<span/>').css('display')); --> 'block' According to W3, span's default display value is inline. Any reason for the switch? Also, say you have a class definition in a style sheet: .inline { display: inline; } console.log($('<div/>').addClass('inline').css('display')); --> 'block' I would expect it to report 'inline'...
[jQuery] How to use bgiframe 2.1.1 on all Windows browsers
We have a situation where we are using JQuery UI dialogs and on windows if one of these dialog boxes appears in front of Flash content then the Flash content will shine through. Obviously the known fix for this is to use an iframe layer between, which is what I thought the bgiframe option would do, but looking into it further I see that it was designed for the form field shine-through problem in IE6. So I removed the check for IE6 and changed it to check for just windows, but that causes the following
[jQuery] Selecting a span within a cell
Given this structure: <table> <tr> <td> <span><span class="Validator"> *</span>hello</span> </td> <td> <span><input type="checkbox" id="blah"/></span> </td> </tr> </table> If i only know the ID of the checkbox input, how can I select the span that has a "Validator" class?
[jQuery] Jquery use of Animate and CSS in IE.
Hi Guys. First time poster here, i've got a bit of a problem. I'm currently developing a new part of my companies site and thought i would use JQuery to snazz it up a bit. Thing is, the site looks fine in Firefox and Safari, but when it comes to (the Dreaded) Internet Explorer, everything goes belly up! http://test.affordablemobiles.co.uk/mobile-broadband/ you can see the page here. If you compare the difference on IE with Firefox, you can see the obvious results. Boxes dont change size, it acts
[jQuery] Adding live web chat functionality
I've been asked to add live web chat to a couple sites, in which jQuery will no doubt play a big role. However, I'd rather not re-invent the wheel if there's some free, open source live web chat software worth recommending. Can anyone recommend such a package, or am I better of writing my own? ...Rene
[jQuery] cant get jquery to work
i cant even get the example tutorialson the jquery website to work when i try to use it can somebody help?
[jQuery] Problem getting tablesorter working
Hello ... I was looking to experiment w/ the tablesorter plugin - went & downloaded it, fired it up, and no tablesorter appears. So in trying to start w/ a minimal example I created a file w/ just the tablesorter sample code, still no dice. Next I theorize that perhaps using 1.3.1 is a problem, so I try it with 1.2.6, still nothing happens. I know that *something* is going on, because if I remove the loading of the tablesorter JS file, I get an error on the $("#myTable").tablesorter() call. I'll
[jQuery] Surefire way to animate thumbnails upon load
I'm trying to add pulse effect to thumbnails in my gallery, so that they animate one after another upon load. If you look at the code you'll probably notice I'm using fxqueue plugin for queuing animation, but the problem persists even if I don't use it. This is the code, and it works in my virtual machine setup and on the web, but some thumbnails fail to fire the load event if I connect to my virtual machine from the host(thumbnails probably load before the code has a chance to attach the event):
Next Page