[jQuery] Another Slide Effect?
(hope this time the posting works) hi. recently i transfered to jQuery from mootools. some time ago i made a slide-down div with mootools and wanted to get a similar effect with jQuery. example: www.madison.at -> click on login! is there a way or a plugin in jQuery, to get the whole box slide down at once instead of slide down part by part? thanks in advance. best. c.
[jQuery] $.ajax
$.ajax retriving data from old request. if I re-open the link then latest data is shown why it is happening function getTask(qry) { tline = qry; document.getElementById("tline").innerHTML = "Fetching recs "+tline; var dbcommand = "<data><dbname>"+dbname+"</dbname><dbquery><![CDATA ["+qry+"]]></dbquery><maxrecs>"+n+"</maxrecs></data>"; // alert(dbcommand); //var o = $.get("http://localhost:1234/dbqex.aspx",{dbcmd:dbcommand}, function(data){ alert("Data Loaded: " + data); }); var o = $.ajax({ type:
[jQuery] Ajax TABS with IE6 problem
Hi, I have a problem with IE6 (IE7, Firefox, Chrome, etc there's everything ok ) and jquery tabs. It looks like that IE6 is "cashing" HTMLs loaded "into" tabs by ajax and i just can't figure out how to prevent it (option "cache: false") doesn't work. Every tab is loaded only once. Tried almost every release i found of JQuery UIs, Tabs. Also this solution doesn't work either: $("#tab-container > div.ui-tabs-panel").empty(); here si my code, I'm using Django so that's why {{selected}} etc and i'm using
[jQuery] Ajax TABS with IE6 problem
Hi, I have a problem with IE6 (IE7, Firefox, Chrome, etc there's everything ok ) and jquery tabs. It looks like that IE6 is "cashing" HTMLs loaded "into" tabs by ajax and i just can't figure out how to prevent it (option "cache: false") doesn't work. Every tab is loaded only once. Tried almost every release i found of JQuery UIs, Tabs. Also this solution doesn't work either: $("#tab-container > div.ui-tabs-panel").empty(); here si my code, I'm using Django so that's why {{selected}} etc and i'm using
[jQuery] Ajax TABS with IE6 problem
Hi, I have a problem with IE6 (IE7, Firefox, Chrome, etc there's everything ok ) and jquery tabs. It looks like that IE6 is "cashing" HTMLs loaded "into" tabs by ajax and i just can't figure out how to prevent it (option "cache: false") doesn't work. Every tab is loaded only once. Tried almost every release i found of JQuery UIs, Tabs. Also this solution doesn't work either: $("#tab-container > div.ui-tabs-panel").empty(); here si my code, I'm using Django so that's why {{selected}} etc and i'm using
[jQuery] Ajax TABS with IE6 problem
Hi, I have a problem with IE6 (IE7, Firefox, Chrome, etc there's everything ok ) and jquery tabs. It looks like that IE6 is "cashing" HTMLs loaded "into" tabs by ajax and i just can't figure out how to prevent it (option "cache: false") doesn't work. Every tab is loaded only once. Tried almost every release i found of JQuery UIs, Tabs. Also this solution doesn't work either: $("#tab-container > div.ui-tabs-panel").empty(); here si my code, I'm using Django so that's why {{selected}} etc and i'm using
[jQuery] Ajax TABS with IE6 problem
Hi, I have a problem with IE6 (IE7, Firefox, Chrome, etc there's everything ok ) and jquery tabs. It looks like that IE6 is "cashing" HTMLs loaded "into" tabs by ajax and i just can't figure out how to prevent it (option "cache: false") doesn't work. Every tab is loaded only once. Tried almost every release i found of JQuery UIs, Tabs. Also this solution doesn't work either: $("#tab-container > div.ui-tabs-panel").empty(); here si my code, I'm using Django so that's why {{selected}} etc and i'm using
[jQuery] Ajax TABS with IE6 problem
Hi, I have a problem with IE6 (IE7, Firefox, Chrome, etc there's everything ok ) and jquery tabs. It looks like that IE6 is "cashing" HTMLs loaded "into" tabs by ajax and i just can't figure out how to prevent it (option "cache: false") doesn't work. Every tab is loaded only once. Tried almost every release i found of JQuery UIs, Tabs. Also this solution doesn't work either: $("#tab-container > div.ui-tabs-panel").empty(); here si my code, I'm using Django so that's why {{selected}} etc and i'm using
[jQuery] Ajax TABS with IE6 problem
Hi, I have a problem with IE6 (IE7, Firefox, Chrome, etc there's everything ok ) and jquery tabs. It looks like that IE6 is "cashing" HTMLs loaded "into" tabs by ajax and i just can't figure out how to prevent it (option "cache: false") doesn't work. Every tab is loaded only once. Tried almost every release i found of JQuery UIs, Tabs. Also this solution doesn't work either: $("#tab-container > div.ui-tabs-panel").empty(); here si my code, I'm using Django so that's why {{selected}} etc and i'm using
[jQuery] Ajax tabs with Ie6 problem
Hi, I have a problem with IE6 (IE7, Firefox, Chrome, etc there's everything ok ) and jquery tabs. It looks like that IE6 is "cashing" HTMLs loaded "into" tabs by ajax and i just can't figure out how to prevent it (option "cache: false") doesn't work. Every tab is loaded only once. Tried almost every release i found of JQuery UIs, Tabs. Also this solution doesn't work either: $("#tab-container > div.ui-tabs-panel").empty(); here si my code, I'm using Django so that's why {{selected}} etc and i'm using
[jQuery] Ajax tabs with Ie6 problem
Hi, I have a problem with IE6 (IE7, Firefox, Chrome, etc there's everything ok ) and jquery tabs. It looks like that IE6 is "cashing" HTMLs loaded "into" tabs by ajax and i just can't figure out how to prevent it (option "cache: false") doesn't work. Every tab is loaded only once. Tried almost every release i found of JQuery UIs, Tabs. Also this solution doesn't work either: $("#tab-container > div.ui-tabs-panel").empty(); here si my code, I'm using Django so that's why {{selected}} etc and i'm using
[jQuery] any way to combine this with additional selectors?
hi i have the following problem: is there any way to combine "this" in a selector like $(this) with additional selectors like $(this+ "span.hello") ? i tried this for a time but i everytime get an error. the only way i see is: $("#"+$(this).attr("id")+ " span.hello") is this the common way ? thanks for your answers
[jQuery] Delayed Checkboxes in IE
Has anyone any idea why the code below doesn't work correctly in IE. Basically what is supposed to happen is when the parent checkbox is checked the child ones are also supposed to be checked. This works fine in FireFox and Safari, but not in Internet Explorer, the child checkboxes only get checked when something else changes on the form, for instance you check another item. Any help would be great. --- <div id="navigation"> <ul> <li><a href="test.htm">Item </a> <ul>
[jQuery] Selecting value from html
Hello! I've got some question: I've got variable 'tr' which contains html or text from table row. How I can read text from second <td> tag. This tag contains _colid=2 attribute. I was trying to do something like that: $(tr ':'td:(eq(2))').text(); but it's not working. Cheers Radek
[jQuery] Selecting value from html
Hello! I've got some question: I've got variable 'tr' which contains html from table row. How I can read text from second <td> tag. This tag contains _colid=2 attribute. I was trying to do something like that: $(tr ':'td:(eq(2))').text(); but it's not working.
[jQuery] .hasClass() not behaving as expected.
Please help, I've been wrestling with this for too long now. I've put together this code to change the background of a div when the mouse hovers over a list of divs. One of the listed divs has a class name of ash and I want to add a background image on that one hover; all of the other listed divs only have colors. The problem is that the .hasClass() doesn't seem to be behaving as it should, or I'm not doing something, or I'm just completely clueless? Below is my code and a sample html to test. Can
[jQuery] Native offline jQuery docs for OS X
I accidentaly posted this to jquery-ui group first. Now I am guilty of cross-posting too :) Ruthless self promotion and ask for help. I created OS X dictionary from jQuery docs. Basically it is native offline document format and integrates fully with operating system. You can search the docs in Spotlight (Leopard only), context menus (Leopard and Tiger) and of course the dictionary itself. So if you could try it out. Report if you have any problems, especially Tiger users. I do not have access to
How do i do this?
Hiya guys, Im trying to produce an HTML site using jquery - this is my first time with jquery so im quite lost... im trying to produce the effect very similalry to http://www.engageinteractive.co.uk... basically I want a main box - which is the "mask for the content" then links above the box that control the content within the mask. Using the sliding effects used here. Also then once I get to a section this can have a sub section... and so rather than going left to right it then slides up/down....
Sidebar Toggle
I'm just trying to create a simple toggling sidebar. It toggles horizontally, by coming out from behind the content div, and becoming visible (it is originally set to display:none). The first half of it works, the other does not. My HTML: <div id="content"> <div id="contenttop"> <span>News <img src="img/overlay.png" class="btn-slide" alt="" /></span> </div> <div id="contentbg"> <p> Lorem ipsum dolor sit amet, consectetur
[jQuery] JQuery Event Handler not Working
Hi Friends, I am a newbie here, so I decided to follow a simple example mentioned in a tutorial, but I stuck here, $("a").click(function(event){ alert("Thanks for visiting!"); event.preventDefault(); }); the expected behavior of this code should be whenever I click the link on my page, the pop should appear saying "Thanks for visiting!", and there would be no redirection. but it is not working in this way, I click the link and it lead me to the src mentioned in the link, no pop up, no prevention
[jQuery] JQuery Event Handler not Working
Hi Friends, I am a newbie here, so I decided to follow a simple example mentioned in a tutorial, but I stuck here, $("a").click(function(event){ alert("Thanks for visiting!"); event.preventDefault(); }); the expected behavior of this code should be whenever I click
[jQuery] Problem in alerting the mouseover values
Hi all, I am playing around with jquery.autocomplete.js file since last couple of days. There is a function inside this file name "function init()", inside this there is a "function(event)" which takes care of mouseover events. have a look: function init() { if (!needsInit) return; element = $("<div/>") .hide() .addClass(options.resultsClass) .css("position", "absolute") .appendTo(document.body); list = $("<ul/>").appendTo(element).mouseover( function(event) {
Can't access DOM elements in AJAX success function
I cant access DOM elements by ID in the Success function of an Ajax call. Here's the HTML (snippet) : <div id="columns"> <ul id="column1" class="column ui-sortable"/> <ul id="column2" class="column ui-sortable"> <li id="weather.ascx" class="widget"> </li> <li id="inbox.ascx" class="widget"> </li> </ul> <ul id="column3" class="column ui-sortable"/> </div> Here's the AJAX call : $.ajax({ type: "POST", url: "test.aspx/addWidget", data: {}, contentType: "application/json; charset=utf-8", dataType: "json",
[jQuery] typo in docs for "post" entry
Anyway, I wanted to point out a bug in the docs: alert(data);
[jQuery] .post ajax issue
Hello, I'm attempting to use AJAX utilizing the .post function. Using Firebug, I see that the post is correctly passing the expected form variables to the page. However, the form variable do not exist when trying to locate them in the requested page. Could there be any reason or ideas as to why? Thanks.
[jQuery] Jquery seems to be sending two requests the first few times. . .
I have been tracing this one down for two days. Has anyone else ever seen jquery making multiple request for a single call? Here is the call: $("#configure_blocks").load( "config_templates/"+config_template +".html", { bust: new Date() }, function( data ){ var theform = document.getElementById("basic_properties"); theform.reset(); }); Here are the lines from my apache2 log: 10.0.1.12 - - [09/Feb/2009:11:41:21 -0800] "POST /config_templates/
[jQuery] Errors
Would somebody mind taking a look at this page http://consolidatedaggregates.com/ . I'm suddenly getting many cryptic jQuery errors. I'm not sure what is causing them because I don't know what they mean. Thanks
Facebox and PHP form validation
Hi Was wondering if anyone can help me out here. I am trying to use a Form in facebox and validate it with a PHP script. So basically, someone submits empty fields and the form submits to php and php sends back an error that show's up in the facebox window. I know there is jquery form validation plugin but I need to use server-side validation. Loading form in facebox works great. Its just the php validation, that's causing me problems, below is my code and was wondering if someone can help me out.
[jQuery] Creating a copy of associative array
I cant figure out how to create a unique copy of an associate array. I need to create a backup of an array, but since arrays and objects are always passed by reference in javascript it ends up replicating whatever changes I do to the first array over to the backup. I would use the .slice() method but since the arrays are not initialized with new Array() it doesn't have that functionality. I've managed to get it to work using the following code, but when combined with jQuery it crashes the browser:
Jquery slider
Hey, i'm using the jquery sliders and its working just fine but it gets a little more complicated. Is it possible to make a sliderbar (i.e. from 0 to 100) but limit the slider from 20 to 80 or from 20 to 100 thanks, Jim
[jQuery] Superfish
Hi Everbody Superfish is great, no doubt. But since I installed 'FrontPage Slideshow' it is not working anymore in IE. What can I do? Please help.... Website: http://westerhallrums.com/rums/index.php?option=com_content&view=article&id=53&Itemid=63 thanks, Deeeee
[jQuery] Superfish
Hi Everybody No need to say that this module is just great! But and there must be a but... since I installed 'FrontPage Slideshow' it is not working anymore! Help please.... You can check it here: http://westerhallrums.com/rums/index.php?option=com_content&view=article&id=53&Itemid=63 Anybody an idea? thanks, Deee
[jQuery] jsForms, Document-View pattern for jQuery
Hello, Let me introduce an additional layer that will allow you to move development process of the web applications to new level. You can use this layer for saving time of development process and simplifying support of your projects. This layer is named jsForms and based on jQuery. It allows to pass from manipulations html tags to objects. If you have ever written desktop applications you can simply understand web applications that was wrote using jsForms. "Embody ideas...Now" Project site: http://www.jsForms.com
[jQuery] Passing a Index to a function
Dear folk, I want to get the index of the TR and send it to the Function , I don't know how to it . this is what I'm trying to do $("table tr").bind("click",{IndexName:$(this).index(this)},clickFunc) function clickFunc(event){ console.log(event.data.IndexName); }
[jQuery] draggable and IE problems
I'm having some problems with a draggable list item and dragging it to a nearby textarea inside of another div. (See http://dev.toolbox.learningfocused.com/tests/planner/unit.html for reference) I have 2 issues: 1) In IE, the zIndex doesn't appear to be working properly and won't allow me to drag the element out of the list and drop it in the droppable container. (A textarea in my instance). This works perfectly in Firefox. I tried setting zIndex to 999 and it had no affect. Not sure where to begin
[jQuery] How to pass a date to DatePicker??
Hi everyone!! How can I pass a date to DatePicker and it shows this date selected, highlighted etc? Thanks!! André
[jQuery] Adding an LI element to an OL
Hi everyone, I've got an ordered list (OL) containing several LI items, currently arranged in alphabetical order. How hard would it be to create a new LI element, and put it in the right alphabetical position based on its value? Sam
[jQuery] animate the top of a div before the bottom
I'm trying to get an animation effect similar to opening a application on mac, where the top of the div will animate first, followed by the bottom of the div. Top of the div gets wider, and tapers to the bottom and then the bottom half animates to match. Has anybody seen this before? The div has a repeated background image and border, so splitting it into two divs and animating one and then the other won't work (i don't think). Any ideas?
[jQuery] The order of these conditions should not matter
Here's my JS: http://pastebin.com/m6091a365 And the accompanying HTML: http://pastebin.com/m30c57ea6 For some reason, the if($("pay_..." condition that comes first gets overridden by the one that follows it. The :checked states you see in the JS are mutually exclusive because they are a part of the same radio group (as seen in the HTML). The showCC and showCheck functions work perfectly in the focus() context (they switch normally). The reason that I'm setting this up this way is so that a user will
[jQuery] Other Slide Effect?
Hi. I implemented a slide box effect with mootools some time ago... www.madison.at -> Click on login! Now, I'm switching to jQuery, but the slide effect here isn't the style I'd like to have. Is there a way or plugin to get a mootools like slide up/down effect? Thanks in advance! Best. C.
Next Page