[jQuery] MooFlow: Carousel of sorts
Has anyone seen the MooFlow image gallery: http://www.outcut.de/MooFlow/ It even allows the pictures to be rotated using the mouse wheel. Very cool stuff, I suppose anything could be ported to jquery, or not? Don't have an immediate use for this, but it's cool, I've seen similar things done in flash.
[jQuery] $('#foo').css() - to return all styles of the element?
My google search got to be vain; I was searching how to find style rules for the element like: $('#foo').css() to return something like: background: red; font: Arial Is there anyway? TIA -- <?php echo 'Just another PHP saint'; ?> Email: rrjanbiah-at-Y!com Blog: http://rajeshanbiah.blogspot.com/
[jQuery] Min-height fix? Plugin
I'm having problems trying to get the min-height of 100% to work on all browsers consistently. Anyone know if theres a jquery plugin for this?
[jQuery] Getting JQuery to work with svg file
I have a svg file that is a map viewer for my website. its a php file that returns a SVG snap shot of the world map I've gotten zoom in and out and pan working from the control panel but I want to embed the SVG into a page and have it load the new map as an AJAX load. my problem is that it can't find the jquery.js file so $ is not initialised Any Ideas Alpha code below <code> <?xml version="1.0" standalone="no"?><svg width="600px" height="480px" version="1.1" xmlns="http://www.w3.org/2000/svg" >
[jQuery] Loading animation when waiting JQuery.post() to return
Hello, How can I set an animation to play when the page is waiting for a return from ajax function such as .get() or .post()??? Didn't find examples in docs. Thanks, rics
[jQuery] jQuery Form: document.forms.submit not working :(
Hello, I have the simple form like <script type="text/javascript"> // wait for the DOM to be loaded $(document).ready(function() { $('#myform').ajaxForm(function() { alert("Thank you for your comment!"); }); }); </script> and form <form class="myform" id="myform" name="myform" method="post" action="index.php"> <input name="Imp1" value="22" type="hidden"> <input name="Imp2" value="" type="hidden"> <input name="Imp3" value="//"> <input name="Imp4" value="" type="hidden"> <a href="#" onClick="document.forms.myform.submit();
[jQuery] keyboard sortable list
Hello, Im building an app that requires keyboard use and im using jquery for some of the things. I was looking for a plugin that can do exactly this on this page. http://www.dhtmlkitchen.com/scripts/draglib/DragModule/demo/dragpane/index.html Any idea which one, because i can't find any.
[jQuery] Superfish Menus - Including Dynamic Navigation Arrows
Hi all and Joel. Is there a version of Superfish that uses jquery generated arrows (using dynamically created classes) for submenus that contain further content? (this page would be an example: http://sperling.com/examples/menuh/ ) Thanks!
[jQuery] cluetip question
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.2900.3243" name=GENERATOR> <STYLE></STYLE> </HEAD> <BODY bgColor=#ffffff> <DIV><FONT face=Arial size=2>With <FONT face="Times New Roman" size=3><STRONG>non-link element</STRONG>, why can't I use without ajax?</FONT></FONT></DIV> <DIV> </DIV> <DIV><FONT face=Arial size=2>I try that:</FONT></DIV> <DIV><FONT face=Arial size=2></FONT> </DIV>
[jQuery] Persistent menu using cookies based rather than location based
Hi, I am fairly new to jquery but I have been practicing for a month. I would like to create a jquery persistent menu. I've been searching for a perfect solution but could not find one. I have start with a basic menu http://www.ecommercewebtemplates.net/test/test.html The menu is expanded / collapsed when you click on <span> tag. However, it's collapsed again when you click any link to another page. This is not what I want. So I created another one using location based : http://www.ecommercewebtemplates.net/test/jquery-menu-location-based.html
[jQuery] Odd behavior calling height() or width() on a page with flash content
OK, this is strange, at best. I'm trying to use the clueTip plugin for some titles on a page that plays video content in a flash player, in the event that the title has exceeded a given length. clueTip works fine, but it's triggering a redraw of the flash content in FF. Working fine in IE. I think I've narrowed the problem down somewhat - in testing, I can check the height() / width() of pre-existing content, but if I create a div and check its height() / width(), the redraw is triggered. Am I going
[jQuery] Help With Odd ID Search
I'm updating some of the legacy software we have at my company and changing much of the JavaScript to jQuery. I'm having a bit of trouble with a few particular id's however. I'm trying to access the last select element of a block of code and retrieve the id like this: $("#itemForm:standards select:last").attr("id"); itemForm:standards is the id of the block I'm attempting to access, and I'm using select:last to get the last select element. This doesn't work however. I tried the same method, but used
[jQuery] LIVE jQuery
Hey all, I am wondering is it possible with jQuery or any other plugin to have say real time results on a page. To do say see what other changes are being made as you are on the screen? Or any with a tad bit delay of a couple of seconds? Thanks! Ryan
[jQuery] selecting element question
for instance $('input[@name=gender]') would select based on name being gender but is there a way to select based on name being gender and checked being checked in one select of chained select? -- View this message in context: http://www.nabble.com/selecting-element-question-tp14677219s27240p14677219.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.
[jQuery] Using JQuery with PHP Frameworks
Hello, I wish to start usign some PHP framework soon and was wondering wich one works better with JQuery. I will use Zend Framework or CakePHP. Not decided yet. Do you have any experience with one of them? How can I use JQuery with them? Any article or tutorial I can read? Thanks, rics
[jQuery] Processor-intensive JavaScript considerations
I have an application that is very processor-intensive. It can takes up to a minute to run. In order to keep the browser from bringing up a dialog that asks the user if he or she wants to bail, I break the work into chunks that are chained together with setTimout(). I'm having trouble getting smooth jQuery animations to happen during this processing, so I've just gone with intermittent graphic updates (like moving the progress bar). Is there any way to get smooth animation while JavaScript is thinking
[jQuery] Using jQuery in Wordpress
So I'm trying to use jQuery in Wordpress (2.3.2)... Mostly for site design/effects now, eventually for posts too, if possible. It looks like jQuery is in the WP core now, but when I Firebug a few $() functions, I get errors. Any trick to getting this going? Googling provided sparse / old articles. Thanks, SEAN O _______________ www.sean-o.com -- View this message in context: http://www.nabble.com/Using-jQuery-in-Wordpress-tp14672948s27240p14672948.html Sent from the jQuery General Discussion mailing
[jQuery] Manipulating elements with a click
Hi, I'm not really sure how to do traversing and such, or even if that's what I need to do. I have these 3 tabs (in list format). I need to make it so that when clicking on one of them, it changes the style of the <li> element that contains the link. Here's the code for the tabs: <ul id="content"> <li class="inactive"><a href="#" id="btn_one">First Tab</a></li> <li class="active"><a href="#"id="btn_two">Second Tab</a></li> <li class="inactive"><a href="#" id="btn_three">Third Tab</a></li>
[jQuery] Consideration for processor-intensive JavaScript jQuery applications
I have a JS app that does a lot of calculations. I'm having trouble keeping the browser responsive. My current solution is to take apart loops that last a long time and make them into functions that call themselves with setTimeout(). (As far as I can tell, you HAVE to do this to keep the browser from alerting the user that a script is unresponsive and perhaps should be shut down). Is that what other people are doing? Trying to have smooth animations and jQuery effects during the processing just doesn't
[jQuery] Fw: [jQuery] Using jQuery in Wordpress
Sean, In your header file (header.php) you need to add the following line BEFORE the line that reads <?php wp_head(); ?>. <?php wp_enqueue_script('jquery'); ?> so that it reads: <?php wp_enqueue_script('jquery'); ?> <?php wp_head(); ?> Gerry
[jQuery] Aspect Oriented Extension for jQuery
Surfing dzone.com this morning, I came across this plugin for jQ: http://code.google.com/p/jquery-aop/wiki/Reference. Being unfamiliar with aspect oriented programming, I did a quick wikipedia lookup and quickly realized that this could be a great way to keep code clean. My question is this: who among us can better explain aspect oriented programming or provide some examples of how to use it effectively? What types of functions are best applied via this methodology? Any known drawbacks? Thanks for
[jQuery] jqForm: Need help with basic validation...
The plugin: <http://www.malsup.com/jquery/form/> My setup: Within my form, have a hidden field that has the names of the fields that I want validated: <input type="hidden" name="required" value="name,email,recipients"> And this is my "test" beforeSubmit function: function validate(formData, jqForm, options) { var x = jqForm[0]; var valid = x.required.value.split(","); // This works. for(var i=0; i < valid.length; i++) { // This works. var z = valid[i]; // This works. if (!x.z.value) { alert('no');
[jQuery] help with addClass
So I'm working with a client that wants to be able to click an image to see the rollover state...they then want to click the image again to be taken to a url. I'm about to suggest that we change the first click to be a traditional rollover as it would simplify things and make things less confusing but I would still like to know how I can achieve the following. I want to be able to to add a class to the parent link and then when I click the link with the new class I want to be taken to the url. I'm
[jQuery] any update on new versions of jQuery or jQuery UI?
is there any update on when new versions of jQuery and/or jQuery UI are coming out? I know I heard the last dates of 17/18 of December last month. I am mainly interested in the jQuery UI. -- View this message in context: http://www.nabble.com/any-update-on-new-versions-of-jQuery-or-jQuery-UI--tp14671627s27240p14671627.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.
[jQuery] Server side JQeury
I have been following John's article: http://ejohn.org/blog/bringing-the-browser-to-the-server The script only support well formed XML, as defined in the function (env.js) window.__defineSetter__("location", function(url){ var xhr = new XMLHttpRequest(); xhr.open("GET", url); xhr.onreadystatechange = function(){ curLocation = new java.net.URL( curLocation, url ); window.document = xhr.responseXML; var event = document.createEvent(); event.initEvent("load");
[jQuery] [ANNOUNCE] jQuery.ScrollTo 1.3 released
Hi everyone jQuery.ScrollTo 1.3 is out, It includes a few fixes, some features and it went through a structural change. Fixed the behavior for Opera which seems to scroll on both <html> and <body>. This last change, requires some crossbrowser testing. It works well on FF 2.0.0.11, IE 6, Opera 9.22 and Safari 3 beta. All of them on Windows. I'd appreciate some feedback on this for other versions/ platforms. Now the scroll limits are checked, this solves the problem that arised when scrolling to the
[jQuery] Is it possible to show a specific div on a distant page (same domain) ?
Hello all, First i want to say Happy new year to everybody. I'm from france so don't take too much attention on my english ;-) I think all is the title ... The ID is to make a kind of sitemap with preview mode. Dominique.
[jQuery] jQuery UI resizable
Does anybody know some good tutorials apart from the wiki and examples? I can get the damn divs to resize! LOL! I think I'm going crazy :****
[jQuery] IE not working correctly with jQuery...
I have a simple webpage I'm using to test some example code for later implementation. It works great in FF2 but in IE6 is won't render correctly. Can anybody tell me what is wrong with this code? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <HTML> <HEAD> <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%> <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <meta name="GENERATOR" content="IBM Software Development
[jQuery] Working with data from a GoogleMaps InfoWindow
Hi, I am very bad at Javascript so my question is perhaps silly... When I have something like this google.maps.Event.addListener(map, "click", function(overlay, latlng) { inputForm = '<form action="" onsubmit="store(); return false;">' + '<input type="text" id="some" />' + '<input type="text" id="thing" />' + '<input type="submit" value="Save"/>' + '</form>'; map.openInfoWindow (latlng,inputForm); }); Is there a chance to let jQuery somehow take over? I
[jQuery] append ul (unordered list) ie bug
in firefox this works fine var id = 1; $parent.append('<div id="c-r'+id+'" class="c-replies c-hide" style="display: none;"><ul id="c-rply-to'+id+'></ul></div>'); but in ie, no ul gets created. next i tried appending the ul to the newly created div (and yes, the div was found) var id = 1; $parent.append('<div id="c-r'+id+'" class="c-replies c-hide" style="display: none;"></div>'); #("#c-r"+id"").append("<ul></ul>"); that didnt work either. i had to resort to this var iediv = document.getElementById("c-r"+id);
[jQuery] Fading out a text
Hi, I want to create an effect where text on the line starts to fade out after 100 characters. I though, I have seen such an effect somewhere but now I cannot find it. I think earlier Gmail inbox items were rendereder like that but maybe I just remember wrong because now they don't do that. Has anyone else seen such a functionality?
[jQuery] IE Bug - ffavauri is Null or no Object
Hey guys, i dont get it... Ive made a little Ajax-App, where some profile-data is coming with an JSON-File. So i get the profile-url and the avatar-url out of JSON. Works fine in FF and Opera, but IE6 and 7 give me something like "ffavauri is Null or no Object". You can find the Script here: http://pastebin.com/m4fe2076d Has anybody an idea why the IE makes an errormessage? I tried alert(profil.ffavauri); and it worked, so the ie gets the correct data, but with the errormessage, all my animations
[jQuery] getJSON doesn't remove the script tags when using a callback.
The getJSON function does not remove the scripts added to head when using a callback (for jsonp). This of course means that you get a build up of markup if you're using the getJSON function (with callback) to poll a resource. Someone called Tom had noticed this before, but the discussion was not resolved. I would have replied to this thread but there didn't seem to be an option to post to the group, only to the individuals involved in the discussion. http://groups.google.com/group/jquery-en/browse_thread/thread/5de2eeeb835711a6/c375846e20dec5bd?lnk=gst&q=getjson+remove+scripts
[jQuery] jCarousel Lite and Thickbox
Anyone as worked with this two plugin... i want to use a jcarousel lite and, with a click on the image, a thickboc effetct... it is possible? Thank you
[jQuery] Drag-Drop tree
Hi, I'm looking for a drag&drop tree like this : http://interface.eyecon.ro/demos/drag_drop_tree.html But this tree must to be reorderable. In fact, I looking for a drag&drop reorderable tree which can be built with an other tree (draggable) similar like this : http://extjs.com/deploy/dev/examples/tree/two-trees.html ... but also with Jquery. Does somebody know something similar ? Thanks in advance. SebR.
[jQuery] Drag&Drop tree
Hi, I'm looking for a drag&drop tree like this : http://interface.eyecon.ro/demos/drag_drop_tree.html But this tree must to be reorderable. In fact, I looking for a drag&drop reorderable tree which can be built with an other tree (draggable) similar like this : http://extjs.com/deploy/dev/examples/tree/two-trees.html ... but also with Jquery. Does somebody know something similar ? Thanks in advance. SebR.
[jQuery] height of a hidden element
Is posible that if i have a hidden div i cant get his height? I want to increase or decrease some font sizes according to the max height of those 3 divs to using with cycle plugin but because im only showing one at a time and the rest are hide i getting 0 as height $('#rotate div .item') .each(function() { $(".msg").append($(this).height() + '-'); } ); <div ir="rotate"> <div class="item"> <img src="test1.jpg"> ....... </div> <div class="item"> <img src="test2.jpg"> <div class="other"> ....... .......
[jQuery] keyboard sortable list
Hello, Im building an app that needs to be able to work with keyboard. Im using jquery fot some of the things and i searched for a plugin with exactly this behaviour, http://www.dhtmlkitchen.com/scripts/draglib/DragModule/demo/dragpane/index.html but i can't find any plugins that do this. Are there any? Or which existing should i use to get that effect? Thank you
interface and it's hash (sortsrialize)
I am using the following interface demo page: http://interface.eyecon.ro/demos/sort.html where I want to put the hash in a input field. I need the hash from the sort 3 (3rd column). Okay this is a part of the code with a form added: ==some more functions and code here== function serialize(s) { serial = $.SortSerialize(s); alert(serial.hash); }; </SCRIPT> <form action="" method="post"> <input name="serial" id="serial" value="" /> <p class="submit alignleft"><input type="submit" onclick="serialize();
Next Page