[jQuery] First release of jQuery.Accessible
Hi guys, I released 0.1 of jQuery.Accessible. As the version number indicates, it's far from being functional. It should be taken more like a demo. My intention is to gather all those small snippets you see over the net to improve accessibility using javascript, and run them automatically inside the plugin. Many accessibility issues cannot be solved with Javascript, basically because they actually appear when JS is disabled. So I also added a set of "recommendations" I found in accessibility pages,
[jQuery] What license is the Cluetip plugin released under?
Hello, I am wondering if the cluetip plugin is re-distributable? I have built a wrapper for the Drupal CMS platform, and was wondering if I can included the cluetip files as part of the distribution. It requires a GPL or similar licensing. Thanks! Chris
[jQuery] Advantages of jQuery
Hi there., Season's Greetings., I very newbie to jQuery. May I Know what are the advantages of jQuery over ajax tech. Is it open a connection with the Server to Browser until the setted cookie info ? Can i able to develop my own function in that & integrate with it? Thanks., Daslim
[jQuery] my new plugins
Here is a demo of them http://www.kaizendigital.com/test/codereck_javascript.php Current these are the features: Tabs: load tab from content on page load content from remote page(ajax) with loading animation(going to be optional) add callback before and after tab loaded. Paginator: Basic, loads data from a remote page, you just need to page the page, how many items there are and how many items per page. Currently there is very styling, just working on functional for now. What else would you like
[jQuery] Fixed Table Headers Plugin - Need some help
I'm working on a plugin for fixed table headers - both column and row headers. I've had *some* success, but still have some odd gotchas. I'm hoping that someone might take a look and help me work out the quirks. http://grover.open2space.com/files/dev/fixedheader/plugin2.htm This is a raw sample page, purely for testing. The plugin itself is at http://grover.open2space.com/files/dev/fixedheader/jquery.fixedTableHeader-0.02.js Current issues that I know of: - functional in IE 7 and FF 2.0.0.11. Haven't
[jQuery] Superfish IE6 Flicker
Hi everybody, Happy Holidays! I've got a rather urgent problem. I'm launching a client's website tonight, and I've implemented Superfish. I had thought the problem was solved awhile ago, but it reappeared in IE6 when I was checking the site today. The webpage we're testing it on is www.sugarmaplemedia.com/chamber For some reason, the rollover menus work properly in this page, but not when you go a little deeper into the site, all of the pages' menus have a flicker when you rollover the border. The
[jQuery] fade out gallery onload
hi, i would like to achieve the following effect: when the page loads , 3 images loaded with an array fade out subsequently on top of the page then disapear, this is the only code i've come up with, any help is really apreciated. <script> $(document).ready(function(){ $(window).load( function () { $("img").fadeOut(4000); }) .end(); }); </script> </head> <body> <img src="cow2.jpg"/> </body> </html>
[jQuery] form element inside div element don't effect by style:display attribute of div
I have a div element! And insite it have a form element as the following: I set display attribute is none, but the form still appear! If i insert some text into div (but outside form then that text don't display! But the text which is inside form then still display! I think that form element was effect by display attribute of div! I also do $("#AddCatWrap).hide(), but the form still displau <div id='AddCatWrap' style="display:none;"> <form name="addcat" method=POST action="#">
[jQuery] Determining if a jQuery object is attached to an existing DOM
I want to be able to determine wheter a jQuery object was created from an existing DOM element, or if it is new/created "on-the-fly". Given the following examples: Example 1: HTML: <html> <body> <div id='title'><h1>Title</h1></div> </body> </html> JavaScript: var elem = $('#title'); Example 2: var elem = $('<div id='title'><h1>Title</h1></div>'); How can I tell if elem came from an existing DOM? I was assuming that I could just check the parent() - expecting the result to be null for Example 2. However,
[jQuery] Looking for insight answers????
Most Forex traders loose money, don't be one of them!!!! Learn Forex for free here and get useful recommendation on Forex learning resources. http://www.forex.ibiz2u.com Sponsored ads link specially for : [[[[[:::::-----::::: jquery-en@googlegroups.com :::::-----:::::]]]]]
[jQuery] Jquery Lightbox or Thickbox and Flickr?
i want to set up a photo gallery for a clients site and would like to use the http://leandrovieira.com/projects/jquery/lightbox/ Jquery LightBox plugin or somethign similar. that par is easy but i would like to be able to use images from flickr. that way the client would be able to update the images in the gallery whenever he needs to. has anyone done something like this or can suggest how to go about it? -- View this message in context: http://www.nabble.com/Jquery-Lightbox-or-Thickbox-and-Flickr--tp14418944s27240p14418944.html
[jQuery] jquery newbie - why does this code not work?
I have a jsf application, and the rendered html has a radio button group that essentially looks like this : <script src="javascript/jquery-1.2.1.js"></script> <script language="JavaScript"> <!-- jQuery.noConflict(); jQuery(document).ready(function(){ jQuery(":radio").css({"background":"#003366", "border":"none"}); }); . . //--> </script> . . <table id="buttonsForm:filterByActor" style="margin: 0px 0px 0px 15px; font-size: 12px; background-color: #003366;"> <tr> <td><input type="radio" checked="checked"
[jQuery] John Resig to write new book
jQuery project founder John Resig is in the initial stages of starting a new book and he's looking for some feedback. Be sure to visit his blog posting for more details: http://ejohn.org/blog/untold-javascript-secrets/ Rey
[jQuery] Can jQuery create an element then bind a hover function to it?
Well, I know the answer is yes, but I can't figure out how. Can you help? I'm using jQuery to take values from an XML file (a schedule for a radio station), wrap them up into nice HTML elements, and inject them into my web page. When the user hovers over any of the jQuery-created elements, I want something to happen. Currently, my jQuery code looks like this... $(document).ready( function(){ var nowDay = new Date().getDay(); var nowHours = new Date().getHours();
[jQuery] ajax callback issue
I have this code: self.element.children('.cr_tab_content').load(id.substring(5), {}, self.options.after_load()); however the after_load function is being called before the ajax request, not after this(I tested in firebug and request is not sent until I close that alert generated by that after_load() function. How can I create a callback after the ajax request is finished? is there is different function like $.post or $.ajax and not load? Thanks Ryan -- View this message in context: http://www.nabble.com/ajax-callback-issue-tp14549667s27240p14549667.html
[jQuery] Applying nextUntil only to h4 containing a link
I'm using nextUntil to apply show/hide content functionality based on its "section", defined as having an h4 heading. This works great. Thanks, Richard D. Worth, for pointing me to the nextUntil samples) $.fn.nextUntil = function(expr) { var match = []; if ( expr.jquery ) expr = expr[0]; // We need to figure out which elements to push onto the array this.each(function(){ // Traverse through the sibling nodes for( var i = this.nextSibling; i; i = i.nextSibling ) { // Make sure that we're only dealing
[jQuery] AJAX Request
Hi. I have just setup a basic site where you click the link and jQuery retrieves the link via ajax. Code as follows: <script type="text/javascript"> function fetchURL(obj){ var page_address = obj.href; $.ajax{( url: page_address, type: "GET", dataType: "html", error: function(e){ alert("An Error has occured" + e); }, success: function(data){ $("#returned_data").empty(); $("#returned_data").append(data); } }); return false; } </script> <a href="about.php" onclick="fetchURL(this); return false;">About</a>
[jQuery] $.ajax
var response = new $.ajax( { 'type': 'post', 'url': this_class.options.url, 'data': { 'total_items': this_class.options.total_items, 'items_per_page': this_class.options.items_per_page, 'current_page': this_class.options.current_page, 'load_page': this_class.options.new_page } }); alert(response.responseText); This code gives me an empty alert box but firebug gives me a response of "page 1". How do I get the html from the $.ajax response? -- View
[jQuery] Using 'this' inside a function inside an object property for a plugin
The plugin authoring wiki page says that if I need multiple public static methods, I should add them to an object. jQuery.logError = function() { ... }; jQuery.logWarning = function() { ... }; jQuery.logDebug = function() { ... }; jQuery.log = { error : function() { ... }, warning : function() { ... }, debug : function() { ... }, }; In the .logError function, I can use the 'this' keyword to access the jQuery object, but when I'm inside the .log.error function, the 'this' keyword doesn't seem to behave
[jQuery] Submit form to a js created iframe target?
Hello, I am trying to submit a form to a an iframe target. I have the correct target name specified in the form, but a new page loads (top) instead of in the desired iframe. The iframe is created dynamically like so... jQuery("body").append("<iframe id=\"myiframe\" ...></iframe>"); and the form looks like so ... <form action="http://www.domain.com" target="myiframe" ...> What do I need to do to make this work?
[jQuery] Chaining Effects
Every time I try to do this, I am frustrated. It's the first thing I tried to chain in jQuery. I try it again from time to time, because I really want it to work. $("#messages").fadeIn("slow").html(" New message.<\/ p>").fadeOut("slow"); What I want is for the old message to fade out, then the new message gets put into the message area, then the new message fades in. It doesn't matter how I order the chaining, I can never get the effect I want. First, what is the proper order to chain the effects?
[jQuery] jqModal Overlay issue
I'm using the latest version of jqModal (r11). On IE7, the overlay is not transparent in any way (solid grey). In addition, it is being inserted before my page content and pushing the page content down. So, if I scroll down, I can still interact with my page elements. On FF, this works as it should - transparent overlay (with an opacity set accordingly), original content visible UNDER the overlay, and can't interact with the original content. It looks like there have been similar issues reported
[jQuery] general unique id for new append element
hello everyone i want to know a way to general unique id for new append element. like EXT's .id(); thanks~~
[jQuery] Events/error example does not work
The following example that's given in the Event/error page at (http:// docs.jquery.com/Events/error) does not work. Based on my understand of the example, this is supposed to bind the function to the browsers "onerror" function and pass the msg, url, and line. Instead of doing this, it just passes the DOM eventObject in the msg variable. $(window).error(function(msg, url, line){ jQuery.post("js_error_log.php", { msg: msg, url: url, line: line }); });
[jQuery] check if an id exists
Hi, what is the best way in jquery to check wether an id exists ? Thank you for any kind help !! -- View this message in context: http://www.nabble.com/check-if-an-id-exists-tp14488007s27240p14488007.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.
[jQuery] jQuery newbie - working through Learning jQuery book
I'm working my way through chapter 7 of the Learning jQuery book, and encountered issues with .lt and .gt. After discovering that .lt and .gt had been deprecated in the current release of jquery, I replaced the sample code with the slice method. However, I have had no luck getting: 1. the page to display only 10 rows of a table on each page 2. getting more than one page to display (none of the links for pages 1-7 work) Has anyone worked their way through the table sorting/pagination code in chapter
Image Fade In/Out
I want to make a image fade in on click of a link, for example like this: http://www.wakeupmrsingh.com/ I found this script I could use: http://www.dynamicdrive.com/dynamicinde ... bnail2.htm Then I found this js script I could use to fade in the image, but I don't know how to put the codes together: http://clagnut.com/sandbox/imagefades/ How can I put the codes togther, and make a image fade in/out on click? Am I using the wrong codes? HELP PLEASE!
[jQuery] newbie question - why does this code not work?
I have a jsf application, and the rendered html has a radio button group that essentially looks like this : <b><script src="javascript/jquery-1.2.1.js"></script> <script language="JavaScript"> <!-- jQuery.noConflict(); jQuery(document).ready(function(){ jQuery(":radio").css({"background":"#003366", "border":"none"}); }); . . //--> </script> . . <table id="buttonsForm:filterByActor" style="margin: 0px 0px 0px 15px; font-size: 12px; background-color: #003366;"> <tr> <td><input type="radio" checked="checked"
[jQuery] attaching datepicker
i'm loading a page using ui tabs that has a date field on it. i would like to attach ui datepicker to it, but i can't seem to get it to work. i've always loaded datepicker through the onready function. it will not work in this case cause the document is already loaded and is inserting info from another page via ajax. i've also tried attaching the datepicker after the page is called by the tabs function (see below). that's not working either though. any ideas? $("#tabs > ul").tabsLoad(currenttab,page);
[jQuery] Toolbar jquery
I can find plugin jquery as toolbar ?? David.
[jQuery] ajaxstart and ajaxstop question
I am using the blockUI plugin. I can block the ui directly when I call jQuery.blockUI() as an onclick event method,;, but both ajaxStart and ajaxStop do not seem to be working. They are not determining the begin and end of my ajax calls. When I write jQuery(document).ready(function(){ jQuery().ajaxStart(jQuery.blockUI).ajaxStop(jQuery.unblockUI); }); The block and unblock UI calls are not getting made, hence blockUI is not being done. The only difference between my code and the example is that
[jQuery] Plugin: Tag Suggestions
I've just posted up a plugin a wrote a couple of months ago for a personal project that allows del.icio.us like tag suggestions - i.e. as the user types, suggested tags appear which they can click on or press tab to select. I think it's an important feature if you've got tagging on your site because it helps the user to narrow down their own subset of tags reducing the margin for variations on one tag or misspellings. The plugin, demonstration and documentation is here: http://remysharp.com/2007/12/28/jquery-tag-suggestion/
[jQuery] .net 2 web services json
Asp.net 2 :I would like to post to a web service and get the result as json format. The method is decorated with [ResponseFormat=ResponseFormat.Json)]and it return a simple class. When I use prototype code like : asmxFile.MethodName( par1, par2,function(obj){}); the obj is json format, but If I use $.post("asmxFile/MethodName", {par1:val1, par2:val2}, function(obj) {}); the obj is not json format but has xml, and text properties containing all json memebers. What else shuld I add to my call to get
Select value manipulation [SOLVED]
Hi! First: Sorry my bad english! This does work for me: js: function updatePrice() { var value = 0; // Within price var hataridoVal = $("#hatarido").val(); switch($('#hatarido').val) { case '3day': value = 10000; break; case '2day': value = 13000; break; case '1day': value = 16000; break; } // pages price if($('#odlalszam').val > 1) { value += ($('#odlalszam').val-1)*1250; } $("#arcsillag_inner").text(value+'
[jQuery] Combining plugins - jEditable and treeview
Hi Im brand new to jQuery, and so far impressed. I have a vision to create a tree structured menu, using the treeview plugin, with nodes that each are editable text elements, using jEditable. So far I have had some trouble integrating these two plugins, and I am wondering if it is possible to use both together in this way, or if I am trying something that will never work.. thanks! (..apologies if this is a duplicate post, cant tell if my last post worked)
[jQuery] livequery and trigger() issue?
I have this code: $('#' + this.options.tab_set_id + ' a').livequery('click', function() { var id = $(this).attr('rel'); self.element.children('.cr_tab_content').html(self.element.children('#' + id).html()); }); and when i do a trigger('click') on on one of the those links, nothing happens, but if i use bind instead of livequery, it does work. it this a known issue? -- View this message in context: http://www.nabble.com/livequery-and-trigger%28%29-issue--tp14538619s27240p14538619.html Sent
[jQuery] Does jQuery script has to be in one physical place?
I usually have my jQuery code near the end of the BODY tag. However, this app I'm working on requires many ajax call to inject certain tab into the DOM, with each tag needing their own jQuery code. Can the jquery code be inside the ajax requested page so that I can seperate the JS code, and put where it really matters? Or does all the jQuery code have to be located in the parent page? Thanks!
[jQuery] Making an Editable Treeview
Hi Im very new to jQuery, and am very impresed so far. Im struggling to create my vision of a Tree structured menu, with nodes that can be edited by the visitor, ie each node should be a jEditable text element. My troubles have been with combining the jEditable plugin with the treeview plugin. Can these plugins coexist on the same page? Thanks!
[jQuery] jquery within ajax response
I'm not sure why I'm having an issue with this, but what I have is an ajax response which contains some more javascript. When I retrieve the page directly, the jquery functions work fine, but when I load the page into another page via an ajax request, none of the functions work. I can launch a javascript alert when the requested page loads, but none of my jquery stuff works. The requested page (the one that doesn't work) is below - if that helps. [ code] <html> <head> <title>getting users from Facebook</title>
[jQuery] ClueTip: topOffset + width
Hello, I am using the ClueTip plugin for the first time, and I'm loving it. However, I am having difficulty with positioning whenever I supply both 'topOffset' and 'width' as arguments. One without the other works just fine, but together, 'topOffset' is totally ignored. $(document).ready(function() { $('caption .cluetip-wide').cluetip({topOffset: '-15px', width: '450px'}); }); Any "clues" or "tips" showing me the errors of my ways would be most appreciated. :-) Thanks in advance, Matt
Next Page