[jQuery] Hey, Karl! You around today?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"> <HTML> <HEAD> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <META NAME="Generator" CONTENT="MS Exchange Server version 08.00.0681.000"> <TITLE>Hey, Karl! You around today?</TITLE> </HEAD> <BODY> <!-- Converted from text/rtf format --> <P DIR=LTR><SPAN LANG="en-us"><FONT FACE="Consolas">Hey, Karl...</FONT></SPAN></P> <P DIR=LTR><SPAN LANG="en-us"><FONT FACE="Consolas">Any chance you might have some time to hook up on Windows
ui.draggables and droppables [SOLVED]
Hi I have built a drag and drop interface using the ui plugin it all works great just struggling to identify what is actually been dropped in the drop zone I need to get hold of the ID of the draggable anyone know how? thanks
[jQuery] jQuery news ticker feature question
Hello, I'm new to jQuery, so I apologize if this is a silly question. But I'm trying to use one of the existing news ticker plugins, however, none of them have a feature I have been looking for. In addition to the refreshing of the news box every so many seconds, I'd like for users to be able to navigate through the different news items, with "prev" and "next" buttons - or even better, with direct "1" "2" "3" links to a specific item. Can this be achieved easily? Or should I just use an accordeon
[jQuery] jqGrid... a few questions...
I noticed that the trirand site is down again this week. I downloaded the demos from the google code page, but they don't really work that well without the database behind it. You can see the code, and work with it, but you can't actually see what it does physically. That aside, one big question I need answered before I spend more time with this plugin... Does it support java? All your examples are with PHP. But can I return JSON via a servlet and get this working? I tried it but it doesn't populate
[jQuery] chili and jquery 1.2.2
Hi all. I tried to upgrade to jQ 1.2.2 but unfortunately the Chili syntax highlighter have some problem with the new version of jQuery. Anyone else got any issue too? Or is there something i am missing? Ciao GC
[jQuery] Autocomplete does not trigger onchange javascript code in input element.
I am trying to replace a previous bit of html that managed input by both an input and a select box with a single input field using jquery.autocomplete.js, but I have not been able to get autocomplete to use the onchange JavaScript code used by that previous bit of html. I have gotten autocomplete to display and select all the values correctly in multiple analogous fields on the same form, but I do not know how to have it trigger the code that was previously run under an onchange event. Unfortunately,
[jQuery] How to have Autocomplete dropdown act like select box and trigger onchange event for input
I am trying to replace a previous bit of html that managed input by both an input and a select box. I now want to work with a single input field using jquery.autocomplete.js, but I have not been able to get autocomplete to use the onchange JavaScript code used by that previous bit of html. I have gotten autocomplete to display and select all the values correctly in multiple analogous fields on the same form, but I do not know how to have it trigger the code that was previously run under an onchange
[jQuery] How do I enhance Google Map
Hi I've followed the following tutorial on implementing a Google Map using Mapstraction, jQuery & Microformats http://24ways.org/2007/unobtrusively-mapping-microformats-with-jquery I was wondering (as a newbie) how to add a couple of additional neat features; 1) Hovering over a marker highlights the appropriate hCard object, 2) Hovering over a hCard object either makes the map marker bounce.
[jQuery] ajax load, url variable question.
I am using the ajax load method to populate a select list. $("#games").load("$siteRoot/file/ajaxgames.aspx", {criteria.Platform.PlatformID: $(this).val(), view: "normal"}); what I am wondering is how I can get jquery to work with the var "criteria.Platform.PlatformID" I am doing it this way so I can pass a different var name depending on the context, example "criteria.Platform.UrlName" Any ideas? Thanks, Mike
[jQuery] jCarousel Lite - weird issue
<html><head><META content="text/html; charset=us-ascii" http-equiv="Content-Type"> <META content="text/html; charset=us-ascii" http-equiv=Content-Type> <META content="MSHTML 6.00.2900.2963" name=GENERATOR></head><BODY> <DIV STYLE="margin:0 0 20px 0;"> <DIV><SPAN class=455184316-22012008><FONT face="Trebuchet MS" size=2>Hi all,</FONT></SPAN></DIV> <DIV><SPAN class=455184316-22012008><FONT face="Trebuchet MS" size=2>Using the excellent jCarousel Lite ( <A href="http://www.gmarwaha.com/jquery/jcarousellite/">http://www.gmarwaha.com/jquery/jcarousellite/</A> )
[jQuery] Anyone seen "toggleClass is not defined"
I keep receiving an error with this bit of code on click $(document).ready(function() { $('div.example').click( function() { $(this).toggleClass("activated"); }); }); It works, but I keep receiving an error stating that "toggleClass is not defined" How would I define this?
[jQuery] Yet Another Grid Implementation focusing on <table> (gridTable)
Hello, I recently finished a working beta version of yet another grid-plugin for jQuery: gridTable features: - using a <table>, not ripping it off at all (so no fixed height for tbody, as overflow:auto on tbody is not supported) - server-side sorting - server-side paging - custom renderers - custom editors - custom readers (currently only json implemented) - public api exposed as events, e.g. $('#my- table').trigger('updateView'); - trying to follow alsup's plugin-guide (http://www.learningjquery.com/
[jQuery] Plugin Validate
I am using the plugin validate. After validating the form, I need to call a function only if the form contains mistake. I looked in the documentation of the plugin was not them anything similar. thanks
[jQuery] Make money easy start now
<div>make money now:</div> <div><a href="http://forex.smarts-way.info/">http://forex.smarts-way.info/</a></div>
[jQuery] Not working in IE
Hi! I have a small but pain-in-the-ass problem. Here is my code: var ExternalLinks_InNewWindow = '1'; function initSpoilers(context) { var context = context || 'body'; $('div.spoiler-head', $(context)).click(function(){ var code = $(this).next('div.spoiler-body').find('textarea').text(); if(code) $(this).next('div.spoiler-body').html(code); $(this).find('div.spoiler-head').toggleClass('unfolded'); $(this).next('div.spoiler-body').slideToggle('fast'); });
[jQuery] load array to js
Hello! I have several inputs <input name="a[1][someone]" /> <input name="a[1][somthing]" /> .. <input name="a[1][someday]" /> Can quick set one walue for all elements a[1]? How can I do?
[jQuery] validate
How with you to add rules and messages in the Plugin Validate in fields that they are added by the user? In my form, the user clicks on a button and to add a block of fields. I need that these blocks are validated also.
[jQuery] filter selects and get value...how?
Hi, I have array of selects, and i filter them with: $inputs.filter("[name='qty[]']"). I want to get selected value. But i don't know how... I tried with: $inputs.filter("[name='qty[]']").filter("select option:selected").val(); $inputs.filter(function(){"[name='qty[]']" && "select option:selected"}).val(); And some other things...but without success...can anyone help?
[jQuery] jTagEditor Custom Callback
I'm trying to extend jTagEditor to add a image dialog with more fields (source, title, height, width, etc.). The only problem is that I don't know how to access any of the jTagEditor functions/properties from within my callback function so that I can insert my string into the textarea when my dialog is closed. The relevant part of the jtag source looks like: <code> function tag(button) { get(); // if it's a function to fire if ($.isFunction(eval(button.callBack))) {
[jQuery] eval vs. Function
A question for the jQuery team: I look at the jQuery source code as my source for Javascript best practices, and I see a few examples of things like: fn = eval("false||function(elem){return " + fn + "}") What is the advantage of that over using Function, as: fn = Function('elem', 'return '+fn) which seems to do what you want more clearly and concisely.
[jQuery] Tabs and Hide/Show Divs
Hello. I'm using tabs to display lists of data. http://stilbuero.de/jquery/tabs_3/ http://dev.jquery.com/view/trunk/ui/current/ui.tabs.js When you click on an item in the list, I display a div. $('#problempanel').show(); If you click on another tab, I would like the div to hide. How can I add this? I tried an "onclick" event but then it goes to my function to hide the div and doesn't run the tab function. Thanks, Mike
[jQuery] traversing xml
Hello again, i'm banging my head on this issue: I'm using a function to search through a small bit xml. It works more or less except that the returned value is not correct. Here is my function: function findAnchor(projectName,scape, xml){ var myscape = $("scape[title='" + scape + "']", xml.responseText); var myItem = $('item[title="' + projectName + '"]', myscape); var myCol = $(myItem).parent(); myVal = $(myCol).attr('title'); $.log("dsanchor for " + projectName + " in scape:" +
[jQuery] learning jQuery book and ajax autocompletion
I purchased Learning jQuery and I'm going through some of the ajax examples. On page 219 they have an auto completion example. I can get it to work just fine, but what about if you're pulling records from a database? For instance, the example shows: $terms = array('football','baseball'); $possibilities = array(); foreach ($terms as $term){ if(strpos($term, strtolower($_REQUEST['search-sites'])) === 0) $possibilities[] = "'". str_replace("'", "\\'", $term) . "'"; } print ('['.implode(',
[jQuery] BlockUI DisplayBox Close on image click
I want to use blockui to show a product enlargement but I want it to close when the user clicks on the image. Here is the blockui sample page: http://www.malsup.com/jquery/block/#displaybox Anyone done this before?
[jQuery] suckerfish menu delay?
Hi all, I've got a slightly modified suckerfish menu where I would like to add a delay before the submenus drop down. The top level ul is oriented horizontally, and crossing it with the mouse causes the submenus to 'bounce'. The modification is that each child ul is wrapped in a div for layout purposes. Here's the code that sets up the menu behavior: $(document).ready(function(){ $("ul#navbar_core > li").hover( function(){ $(this).children('a').toggleClass('navbar-on').end().find('div').animate({
[jQuery] Problem With jquery form plugin and tinymce
I have a form which is submitted through jquery form plugin. The form contains only one textarea which uses tinymce. The problem is that when I try to submit the form, the new content of the textarea is not sent through POST. If there is any content before that modifications, than that content is send. If I submit the form twice, than the second time, the new content is send. Here is some code: <script type="text/javascript" src="include/js/jquery-1.2.1.min.js"></script> <script type="text/javascript"
[jQuery] Selectors with this keyword
Hi Guys, What im after is using selectors with the 'this' keyword. I imagine this is a fairly common example, but I cant seem to get the syntax right. Example: $("ul:has(li)") except i want to use something like: $(this:has(li)) Thanks
[jQuery] Form Plugin and Thickbox
Hi everyone, I am writing a cakePHP application and trying to use thickbox to load a form and the jQuery Form Plugin to submit it. If I use the form by itself with a url of /employees/edit/employee_id the jQuery Form plugin works fine. If I load that exact URL in a thickbox though, the Form plugin quits working, and when I click submit, it goes through like a normal submit. Any ideas? Thanks & God Bless, Travis
[jQuery] this.parentNode has no properties
Hi, I am creating a number of divs dynamically which are all draggable. The divs can be dropped in two different areas (#editDiv and #deleteDiv). On drop on #deleteDiv I get "this.parentNode has no properties" straight away. On drop on #editDiv it works fine when I drop the first div. If I drop a second div I get "parent has no properties" and "oDrag.helperSize has no properties". Can someone please help me? I have tried to debug with firebug but I just cannot figure out what is wrong. I have uploaded
[jQuery] Form Helper Popups
<div>Not sure what the correct name is but I am trying to achieve something like this:</div> <div> </div> <div>Anyone have a plugin already out there that I can easily attach to any form element?</div> <div> </div> <div>Here's a screenshot:</div> <div><A href="http://www.gonrad.com/200801/helperbox.jpg">http://www.gonrad.com/200801/helperbox.jpg</A><BR></div> <div>Thanks,</div> <div>Gautam</div>
[jQuery] $(window).scrollLeft is not a function ... help! :o(
Hi folks, I'm trying to use jdMenu for jQuery (which I have successfully used before), but I'm getting the following errors when trying to use it this time around (1.3.beta2). When using the unpacked version I get: <span class="objectBox objectBox-errorMessage hasTwisty hasBreakSwitch">$(window).scrollLeft is not a function</span> When using the packed version I get the following: <span class="objectBox objectBox-errorMessage hasTwisty hasBreakSwitch">missing ; before statement ... which then
[jQuery] [plugin] Facebox
Maybe old news, but found from the intterwebs: http://famspam.com/facebox/ -- Mika Tuupola http://www.appelsiini.net/
[jQuery] help with jframe plugin :)
http://members.chello.at/stickray/ajax i need to call this jframe per javascript, ive wrote my own function but isnt working :/
[jQuery] UI library loader
Hey everybody, I've made a little tool for jQuery UI library to help developers to load all needed libraries with one line of code. More: http://uniqueculture.net/blog/archives/3 Thanks
[jQuery] xml parsing - what am i doing wrong?
Hello, i'm loading a bit of xml and i'm trying to use the loaded data, but i 'm unsuccessful traversing it so far. Can you tell me what i'm doing wrong? here is the loading code: datascape.getAllAnchors = function(){ $.get("projects/datascapes.xml",function(data){ return $(data); }); } then further down, i need to retrieve an item's parent col element "title" attribute. jQuery(function($){ ... var thisDS = $('scape[title="'+UI.section+'"]', datascape.anchors); var dsAnchorVar = $('item[title="'
[jQuery] Is there a way to hide the script
If I make a long jQuery script, and when the webpage is loaded, when we look at the source code, then everyone will be able to see the jQuery script. Are there any ways to get this hidden. I wanna hide these scripts for SEO reason as well... Thank you very much -- View this message in context: http://www.nabble.com/Is-there-a-way-to-hide-the-script-tp14992459s27240p14992459.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.
[jQuery] Help with FORM plugin
Hi Group - The FORM plugin .js file shows up in FireBug, so I know it is being loaded. I've attempted to use both .ajaxForm and binding .ajaxSubmit to my form, but for some reason the FORM plugin .js is not being called. (NOTE: I've even used sample code from the FORM plugin docs (and was sure to edit in the name of my form ID into the examples.) Some other info: * My form is being loaded into the page via UI.TABS. * When submitting, the user ends up looking at the blank response from the .php file
[jQuery] jquery 1.2.2 and animate()
hi, what is the best way to animate background-color with jquery. i tried $j(this).animate({backgroundColor:"#ff0000"}, 2000) to get a red background, but it doesn't work. do i have to use any plugins? thanks stefan -- Stefan Kilp SK-Software, Entwicklung & Beratung email: kilp@sk-software.de fon : +49 6151 93344-0 fax : +49 6151 93344-20 Herta-Mansbacher-Str. 98 64289 Darmstadt, Germany. -----------------------------------------------------
[jQuery] reset cloned
Hi, Is there an easy way to reset the cloned input fields (text and select) after they're cloned (preserving the parents value)? Thanks
[jQuery] Masked input plugin for hour
How accept only the minutes 00, 15, 30, 45 using the masked input plugin for hour? thanks -- View this message in context: http://www.nabble.com/Masked-input-plugin-for-hour-tp14997181s27240p14997181.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.
Next Page