[jQuery] Gmail Progress Bar
Recently Google Added a Progress bar in gmail .. without any SWF uploader and any Flashes ... And it works in IE and FIrefox ... how could we do the same in jquery and How did they do this...?
[jQuery] Ajax in IE doesn't return result
Ajax in IE doesn't return result, and display error :( In other browsers everythink is ok? what can it be?
[jQuery] Jquery dragandrop example
In my requirement : I have two div's in the one of the div tag .. I have folder tree structure ... and in the another div i have fck editor.. What i want to do know is . I m going to select a word from the folder tree structure , i will drag and drop in the fck editor.. I want a example code for that Can any one help me.. Thanks Sunil Nair
[jQuery] using jquery $(document).ready() and dojo.addOnLoad together
I'm working on a project that is using both of these together and we are running into some problems. I'm inheriting the dojo code. It looks like our jquery code is getting called first in terms of the page being ready. The problem we have is that the jquery is handling ad server loading so if the ad server gets flaky, the browser (esp FF but also IE7) causes the dojo part to not run. I'm a little surprised by this as I'd expect it to run through to the Dojo but it seems like the dojo is waiting for
[jQuery] jCarousel - Couple of 'External Controls' questions
Hi there, I've set up an example page here: http://www.sockandpow.com/Q2/media.html My questions are as follows: 1. Is there a way to customize how jcarousel references the external controls? i.e: I'd prefer not to have 1 Print :: 2 Broadcast :: 3 M.R.M etcetera. For example, can we use classes or ID's and put them on the <a> element, or have it iterate through a list of links in a certain ID automatically? For now i've used a span to hide the actual number (as with New Entertainment) 2. Is there
[jQuery] Shadow jQUery
I need Image Shadow with jQuery I think it is a the main jQuery. 1.2.3.js If there is an Example for the Code please let me know .... Regards Pedram
[jQuery] dragging multiple draggables with one handler
Hi, I was wondering if someone knows or was succesfully able to drag multiple draggable objects with one handler or mouse motion. I've tried creating an array with draggables pointing to the same handler but that did not seam to work. Any ideas? Thank in advance, Jakub
[jQuery] Animated Hover Width
Hi! I'm using animated hover for the first time on a website; it was so easy to add to my existing page, but it seems that the div.ahover is wider than the list item it's animating. Since this is in a horizontal list, it looks somewhat awkward. I've tried giving it a fixed width, but that doesn't appear to have any effect. The list items have fixed widths of 120px, and there doesn't seem to be any problem with margins or padding. How can I resolve this? TIA, Andrew
[jQuery] form effect
Hello @all, I have made a mailform and if the user click on the submit button the mailform should first dissapear before post the message. I had tried the follow way: $("form").submit(function () { if ($("#div1").is(":visible")) { $("#div1").animate({ height:'hide', opacity:'hide' },"slow","easeInOutCirc"); }; }); But the effect could not work because the form is post the message promptly.
[jQuery] strange error with plugin validation
Hi guys, i have this strange error with plugin validation. This is my code: http://rafb.net/p/L0yQZ681.html Thx @ all.
[jQuery] Get Global CSS Value
I've looked everywhere and it should be simple I know you can get current /actual css value for an element assigned to class ie: via $('myitem).css('cssvalue') But I want to have a stylesheet that contains my own custom values which I read and then assign to my page elements.FYI If I create a CSS class with custom properties and assign to an existing element then while I can get valid CSS properties I cannot get the custom value (except with IE) eg: My { a1Type: Date; a1ValidMesg:Please enter a valid
[jQuery] Search plugin?
I'm in the middle of creating a search page for my app that resembles something like the custom query capability of Trac. Before I go toooo far, is anyone aware of a nice simple package/plugin for this sort of thing? I don't recall seeing anything like this on the plugin page recently... The idea is that we have tooo many options on the current search form, and they are not all used all the time. Not to mention we do not have ALL possible options on the search form - just the most common. We want
[jQuery] Get Custom/global CSS Value
I know I can get the CSS value for a standard CSS properties For instance $('#myelement').css('Width") But I want to create my own CSS properties eg: (Css Entry) a1FormDate { a1Type:Date a1Required:True } The problem is that if I try and retrieve this value by the above methods I get a null value from Firefox and Opera. IE seems to work OK It would be good if I could get CSS value without knowing class. The only way I have seen to so this is outside of jquery by creating an array and manually searching
[jQuery] How to make a resize window to clients display settings.
Hi I need help how would you grab the cliens display settings and base of that give them a website in that display setting. Like if I make about like 5 or 6 different layouts of the same website for different display settings and have them use the one that fits with there display settings. Basicly I want an easy way to resize and reposition the elements in the website based off the clients display settings so the website basicly would adjust to the clients display setting so they can view the website
[jQuery] $. get xml on IE, does not work....
Hello guys, Please help. Belove works well in Firefox an Opera but not in IE. In IE nothing is returned... Client side: - appends result to <div id="reader"> $.get('page/dbRead.php', function(xml) { $('#reader').append( $(xml).find('content') ); }); Server side: - script produces very simple xml response <? (...) echo <<<XML <?xml version="1.0" encoding="iso-8859-2"?> <message> <content>{$c}</content> </message> XML; ?> That's it. Any idea, how to make it works? The solution, other than producing
[jQuery] Documentation for Version 1.2 (Download)
Hello, I am looking for documentation I can download and have accessible offline. I understand that visualJQuery and JQuery 1.1.2 API Browsers are available for download, however, they are outdated. Is there and RSS feed for the documentation provided at JQuery.com itself? (I am willing to port the raw data to an application). Thanks
[jQuery] Superfish issue: statusbar URL won't show when hovering second tier links
Hi all, I've implemented superfish to display a drop down menu on this website (http://test.milieucafe.nl/). I noticed that when hovering on the second tier links, the corresponding URL won't show up in the statusbar. Instead, it shows the URL of the parent tier (top tier). I would say this behaviour is not meant to be so. Am I doing something wrong? Anyone having the same issue? Help is much appreciated! Kind regards, Ruud.
[jQuery] Plotkit Port?
I saw this when looking for chart functionality http://www.liquidx.net/plotkit/, but wasn't sure if anyone was looking to port it, or has? I saw the Chart plugin, but says 0.1 which says to me that it is pretty far off, although the demos looked alright. Just wondering. Seth
[jQuery] Expected behaviour of :visible and :hidden?
I'm hoping someone can clarify the expected behaviour of the :visible and :hidden filters when the parent element is hidden(display: none). Will these filters consider these invisible-to-the-user elements visible, or hidden? For example: <div id="hidden-div-1" style="display:none;"> <div id="inside-hidden-div">This div is inside a hidden div.</div> </div> So will $("#inside-hidden-div:hidden") return the element? My expectation was that this *would* have returned the element, but it does not. There
[jQuery] click function doesn't work on dynamic content?
Hi there, Please see my example here: http://www.hellobenlau.net/jquery/test.htm So basically, I want to select a list item from Group A, and when the transfer button is clicked, it gets transfered to Group B. However, once transferred, the list items in Group B doesn't respond to any click function called OUTSIDE of the 'transfer' function. I"m not sure if i'm explaining it properly, but this is my code: $(document).ready(function(){ var temp; // selecting $('li').click(function(){
[jQuery] Mouse Event and Title Display
I'm in the processes of creating a gallery with JCycle. I was given a request to have: gallery with forward/back arrows. small grey box thumbnails for each image. title displayed for each image/thumbnail. onhover of another non-active thumbnail, the name changes to that, onmouse out, it goes back to the name that is present. I have all these things done BUT onmouse out, changing back to original name. Below is the code: <script type="text/javascript"> $(document).ready(function(){ $.fn.cycle.defaults.timeout
[jQuery] insert td before previous td
There is some "short code" way to insert the fourth td of a table before the second td? Thanks
[jQuery] JqModal
Hi! i'm new to this an quite new to programming.I can fel this is great.I'm from the jqModal tutorial page and i just want to try it and add it to my project.First i did a copy and paste but it not working.Ok i thought it's because i don't understand the library and i went to try another tuto like get started and how jquery works.It was great. one thing confuse me from the http://dev.iceburg.net page is don't know which tools to use. i'm interested in the styling view a .don't know here to start.
[jQuery] Superfish help
Is there a way to have a delay on the mouseover event for a superfish menu?
Toggle set to "up" on page load
Ok so I have a div that is supposed to be only partially opened when the page loads, and then opens 100% when it's clicked on. I found a great plugin that creates the effect that I wanted, but now my problem is when the page loads the div is all the way open and only closes when it's clicked. Kind of the reverse of what I wanted. Anyone know how I can have it toggled up when the page loads? Here's the page: http://www.jnsitedesign.com/slide/index.html Here's the javascript: <!-- <script src="jquery.easing.compatibility.js"
[jQuery] Tab Mouse Over
I have the following: <div class="TabContainer"> <div class="leftcorner"></div> <div class="content"></div> <div class="rightcorner"></div> </div> I need to be able to change the classes for leftcorner, content, and rightcorner on mouseover of TabContainer?? Any on know of a simple way to do this??
[jQuery] :eq selector broken?
Is selector ":eq" working correctly in the last version? I thought that was broken using it on my project, but I see now that the demo on http://docs.jquery.com/Selectors/eq#index is not working too.
[jQuery] String Manipulation
Is there a good string manipulation library plugin? Something that might have .split()
[jQuery] conditional events
I'm trying to trigger an event only when a condition is met, $(document).ready(function() { $('#leftScroll').click(function() { $('#scrollContent') .animate( { left: '+=900' }, 'slow'); }); }); I only want '#scrollContent' to move if its position is not 'left: 10' I've tried using .offset() and .position() both with no luck if($('#scrollContent').position()
[jQuery] Handling errors when ajax returns html
I have some server-side code that responds to certain ajax requests by returning the html of new rows to insert into an existing table. This works really well, but I've been thinking about ways to handle "errors" on the server side. By "errors" I mean both actual bugs, and business rule violations that mean you can't save a record (for instance). Prior ajax apps I've done have returned xml data that gets rendered by the client, not html. Each response has both data and status sections, and status
[jQuery] Checking for the next element then hiding it.
Hi guys I want to do something like this. I want jQuery to hide the h3 objects when it detects that there are no p objects after it. My newb attempt: $('h3').next('p').hide(); But it does not seem to work. <h3>Title</h3> Paragraph <h3>Title</h3> <h3>Title</h3> Paragraph Any suggestions?
[jQuery] overlay floating div
Hi guys, I'm trying to have a floating div than once triggered it doesn't push down the element below but it overlays them. Something between an accordion and a lightbox. Until now all my efforts have been useless, so do you have something to suggest to me? Thanks and have a nice day!
[jQuery] [validate] Validating against a combination of fields
I'm trying to create a custom validation rule which works based on a pair of form fields (specifically, two select elements representing month and year, which must be a date in the future). I couldn't see any examples of this pattern in use, and wanted to ask if it was even possible? How might one go about creating a custom validation rule that did this? ~B
[jQuery] How to replace one word with another when it's not alone in a cell?
I want to simply replace the word "comment" wherever it is in a particular table. Here's my jQuery attempt: $(document).ready(function(){ $("td:contains('comment')").text("vote"); }); What this does though is replace all of the text in every cell that has the word "comment" in it with the word "vote". I just want to replace the word "comment" in every cell, not all of the text in every cell. Is there a way to do this with jQuery? I am doing this on a Confluence wiki if that makes any difference.
[jQuery] Jquery Help
I have array like this... I am fetching the values in the array format... in search.php page, if i dont have any values in this array how can i show the Message "There is no value"; in autocomplete in jquery.. Here is the Jquery code: $("#patientsearchresults").autocomplete("/SSHD/patientsearch/ controller/PatientSearchController.php?action=patientSearch", { formatItem: function(row) { row = eval("(" + row + ")"); return row['PatientLastName'] + ", "+ row['PatientFirstName']
[jQuery] how to make datePicker play nice with other plugin
I have problem try to combine jquery.datePicker and jquery.Form plugin. If I code jquery.Form first and jquery.datePicker next Form work but datePicker not and vise versa. Is there a way to make it compatible with each other?
[jQuery] Mike Alsup: media plugin question
i Mike, (your email address doesn't seem to work for me, so I post it here.) first I want to say: thanks for a great plugin! I use it a lot. Nice work there. I have a suggestion and a question. The question is: Any plans for supporting the new swfobject 2.0 anytime soon? A little suggestion for your getSettings method to be more sure of maintaining width and height: var w = meta.width || parseInt(((cls.match(/w:(\d+)/)||[])[1]||0)) || el.width || $el.width(); var h = meta.height || parseInt(((cls.match(/h:(\d+)/)||[])[1]||0))
[jQuery] get Request doesnt work in IE7
All of a sudden, xmlhttprequests don't work no more in IE7. FF perfect, no problems. Here the simple 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> <title>some title</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <script type="text/javascript" src="bin/jquery/jquery.min.js"></ script> <script type="text/javascript"> $(document).ready(function(){
[jQuery] JSON and each loop
This is a working sample, but I would like to use a dynamic variable "selected_country" within the each loop at the end. Like: data.selected_country. However, if I use this it takes it literally and thus does not find "selected_country" in the JSON. It would be nice to find and only return US, UK, etc. from the JSON. JS: var $select_country = $('select[name="country"]').get()[0]; var $select_state = $('select[name="state"]').get()[0]; var selected_country = 'US'; $($select_country).change(function()
[jQuery] Datepicker: convert date string back to date?
Does anyone know if there is a way to convert datepicker's generated date range string back to a suitable date format I can use to provide values for minDate and maxDate? Thanks!
Next Page