[jQuery] $.getScript Must Take .js File?

2009-03-26 Thread Code Daemon
I am using codeigniter and it forms urls like this: http://mydomain/index.php/system/edit_js I'm trying to call $.getScript by going: $.getScript(http://mydomain/index.php/system/edit_js;) but I get a 404 not found error. I pasted the url in my webbrowser and it works just fine. Is there any

[jQuery] Re: Intelisense in VS2008

2009-03-26 Thread simonxy
I have the following code: html head titleHover example/title link rel=stylesheet type=text/css href=hover.css script type=text/javascript src=../scriptsNew/jquery-1.3.2.js/script script type=text/javascript function report(event) {

[jQuery] Re: Jquery Tabs shown Horizontally in Firefox but shown Vertically in IE...?

2009-03-26 Thread Martin
Hello Acamar, You were correct it was a CSS issue, some css defining another a link was getting mixed up with the tab links. Once I specified the separate a link more precisely using a class qualifier (i.e. was a now a class=banner, the problem was resolved. Thanks for your help... Martin On

[jQuery] Re: [autocomplete] jquery + dwr

2009-03-26 Thread Jörn Zaefferer
Thanks for the ticket! Jörn On Wed, Mar 25, 2009 at 11:32 PM, Diego Plentz diego.pi...@gmail.com wrote: I suspected :-) Well, I archived the results that I want doing a modification to the autocomplete source code. I've added a async option, so if someone want's to use asyncs requests as a

[jQuery] getJSON

2009-03-26 Thread iceangel89
i am trying to load json. but it seems like its not working. nothing is alerted. supposed to be the case? script type=text/javascript $(function() { $.getJSON(data.js, function (json) { alert(json); }); }); /script data.js [ {Value: 1, Item: Physics}, {Value: 2,

[jQuery] Re: getJSON

2009-03-26 Thread jakenoble
Shouldn't your JSON return values be double quoted? [ {Value: 1, Item: Physics}, {Value: 2, Item: Chemistry}, {Value: 3, Item: Biology} ]; On Mar 26, 9:16 am, iceangel89 iceange...@gmail.com wrote: i am trying to load json. but it seems like its not working. nothing is alerted. supposed to be

[jQuery] Re: aborting a $.getScript() request

2009-03-26 Thread Mauricio (Maujor) Samy Silva
You're right. A quick look in the bug tracker turns up this ticket: http://dev.jquery.com/ticket/1768 Karl Rudd Tks Karl, So, there are two questions I made to myself and I am unable to answer: 1-) Does $.getScript() is a

[jQuery] Re: attr(href) giving full path instead of relative in IE

2009-03-26 Thread Rostislav Hristov
I experienced the same problem while developing a plugin that does some tricks with the page content during the ready event. I noticed that attr('href') works fine if I don't manipulate the body tag content. IE won't return the correct href attribute if I do so. The code I used to workaround the

[jQuery] Re: aborting a $.getScript() request

2009-03-26 Thread Karl Rudd
Here's my thoughts: 1) It is reliable when dealing with scripts that exist. 2) No idea. Karl Rudd On Thu, Mar 26, 2009 at 9:12 PM, Mauricio (Maujor) Samy Silva css.mau...@gmail.com wrote: You're right. A quick look in the bug tracker turns up this ticket:  http://dev.jquery.com/ticket/1768

[jQuery] highlight navbar

2009-03-26 Thread new to jquery
I'm trying to make a navigation bar with highlighted tabs. It works when I specifically click the tab, but if I come to the page from an outside link, I can't get the tab to highlight. How could I say something like: $(#navbar a).each(function(){ if(this.href *like* window.location)

[jQuery] Looking for talk submissions for Open Web Vancouver 2009

2009-03-26 Thread JeffG
I'm helping organize this year's conference; the dates are June 11th and 12th at the Vancouver Convention Centre. I'd love to see some talk submissions jQuery ( jQuery UI ): http://www.openwebvancouver.ca/node/add/talk So far we have a few interesting confirmed speakers including Chris Messina

[jQuery] Jquery with Rails application

2009-03-26 Thread haritha syamala
Hi all.. I am new to JQuery, I am trying to implement Jquery with Rails apllication. I installed JRails and implement some effects. But i couldn't able to find exact result.. can anybody tell the usage of Jquery with Rails

[jQuery] Re: Pointless but fun jQuery experiment

2009-03-26 Thread kanna
Nice effects, Kelvin!! JQuery Rocks!!! On Mar 26, 8:49 am, Nikola nik.cod...@gmail.com wrote: That was really neat... jQuery physics! On Mar 25, 11:40 pm, brian bally.z...@gmail.com wrote: I'll second that! On Wed, Mar 25, 2009 at 9:26 PM, Rick Faircloth r...@whitestonemedia.com

[jQuery] Re: Trying to get CrossSlide plugin to work

2009-03-26 Thread Dave.BV
you have a drupal module for insert blocks with pictures using the Cross-slide jquery plugin: http://drupal.org/project/slideshowcs Hope this helps On Feb 2, 6:39 am, Wonder95 killsho...@gmail.com wrote: I'm trying to implement the CrossSlide plugin with Drupal and I'm not having any luck.  

[jQuery] Ignoring mouse events?

2009-03-26 Thread Carlos A. Carnero Delgado
Hello, I have a table of items, and each one of them is manageable somehow. That is, for each one of them I can provide links to modify, enable/disable, delete, etc. Basically a simple CRUD application. Now, instead of using ever-present links for each row, I'd like to show a little div with

[jQuery] Jquery with Rails application

2009-03-26 Thread shs
Hi all.. I am new to JQuery, I am trying to implement Jquery with Rails apllication. I installed JRails and implement some effects. But i couldn't able to find exact result.. can anybody tell the usage of Jquery with Rails

[jQuery] Jquery with Rails application

2009-03-26 Thread shs
Hi all.. I am new to JQuery, I am trying to implement Jquery with Rails apllication. I installed JRails and implement some effects. But i couldn't able to find exact result.. can anybody tell the usage of Jquery with Rails

[jQuery] Jquery with Rails application

2009-03-26 Thread shs
Hi all.. I am new to JQuery, I am trying to implement Jquery with Rails apllication. I installed JRails and implement some effects. But i couldn't able to find exact result.. can anybody tell the usage of Jquery with Rails

[jQuery] [form] Handling re-ajax'ing a form after a submission attempt

2009-03-26 Thread kevin
Hello, I am having a problem re-binding a form with ajaxForm() and Zend Framework. I got the ajax form submit working, but on form validation failure I am passing back the form html within a json object and I re-stuff the div container with the form html in order to render out form errors.

[jQuery] Re: must show an element if exists

2009-03-26 Thread Alexandre Plennevaux
you don't have to do that check. If the element does not exist, the show() code will not be run. On Thu, Mar 26, 2009 at 4:40 AM, shobhitsoftskills shobhitsing...@gmail.com wrote: hi, i am learning jQuery and confused about one thing.below is simple code using jQuery. !DOCTYPE HTML

[jQuery] Re: Pointless but fun jQuery experiment

2009-03-26 Thread Alexandre Plennevaux
kelvin, that's wicked ! On Thu, Mar 26, 2009 at 11:37 AM, kanna mail4ka...@gmail.com wrote: Nice effects, Kelvin!! JQuery Rocks!!! On Mar 26, 8:49 am, Nikola nik.cod...@gmail.com wrote: That was really neat... jQuery physics! On Mar 25, 11:40 pm, brian bally.z...@gmail.com wrote: I'll

[jQuery] Re: Intelisense in VS2008

2009-03-26 Thread MorningZ
There's nothing you can do there function report(event) gives Intellisense no clue what type of object event is suggestion: move on past this issue or post here http://forums.asp.net/1112.aspx but you're going to get the same answer On Mar 26, 4:30 am, simonxy enki...@gmail.com wrote: I

[jQuery] Re: question about getJSON and surrounding JavaScript comments in JSON

2009-03-26 Thread MorningZ
That doesn't make any sense getJSON, makes an AJAX call and expects, well, it expects JSON if what your calling has comments surrounding it, then it isn't JSON, so that function won't work You'll have to use the generic .ajax method, strip off the comments, and then, ugggh, eval() to turn the

[jQuery] Jquery Tabs, want to remove white line under selected tab

2009-03-26 Thread Martin
Hello, My Jquery Tags are working perfectly. But the only problem I am now experiencing is the selected tabs have a 1px white line underneath them. I have matched the colour of the tab and pane, but the 1px line underneath makes the tabs look separate from the pane. Has anyone encountered

[jQuery] Re: Cross-browser inline style injection in DOM

2009-03-26 Thread xPheRe
Hello all, I found no solution yet to the CSS insertion. Has anybody faced the same problem? Is there a better/simpler approach? Thanks in advance On 24 mar, 16:16, xPheRe xpher...@gmail.com wrote: Hello all jQuery people. This is my first post in this list but I hope I can make sense with my

[jQuery] Re: aborting a $.getScript() request

2009-03-26 Thread Mauricio (Maujor) Samy Silva
1-) For remote calls, even script exists, in case server is down the issue arises. 2-) It will be great some advise from a member of jQuery team. Maurício. - De: Karl Rudd karl.r...@gmail.com Here's my thoughts: 1) It is

[jQuery] Re: Executing javascript that comes inside an AJAX response

2009-03-26 Thread Amit Shah
you didn't get it. i mean the function written in response text. which has be evaluated. can be called only from the main script. not from inside the responsed html data. On Mar 24, 8:07 pm, mkmanning michaell...@gmail.com wrote: If you're going to use jQuery, you have to be careful about

[jQuery] How to bring focus to a window in jquery?

2009-03-26 Thread Mike
I am trying to bring focus to window using jquery. The window is popup initiated through a button click on the parent page. I have some ajax calls going on in the child window, so data is being updated. My issue is that if the user clicks on the parent window and hides the child behind it, i

[jQuery] Re: Attribute selector

2009-03-26 Thread Lay András
Hello! On Wed, Mar 25, 2009 at 6:00 PM, Karl Swedberg k...@englishrules.com wrote: Hi Lay, You could do it like this: $('table').filter(function() {    return this.style.tableLayout == 'fixed'; }); Not sure what happens when you try it in a browser that doesn't support the tableLayout

[jQuery] Re: Jquery Tabs, want to remove white line under selected tab

2009-03-26 Thread acamar
Hello again Martin It's CSS question as well :). It would be helpful if you reveal your code. But as I suppose the margin-bottom: -1px on tabs may help resolve the problem. On 26 мар, 14:56, Martin martin.ikedia...@gmail.com wrote: Hello, My Jquery Tags are working perfectly.  But the only

[jQuery] tablesorter plugin

2009-03-26 Thread David
Hi all, I found this very handy tablesorter plugin (http://tablesorter.com/ docs/#Demo). But i have a problem when i want to put an image in it, the image is trashed and/or does not display properly. Is there a special way to do it with tablesorter ? my code: echo 'td'; echo 'a

[jQuery] Re: Jquery with Rails application

2009-03-26 Thread nick hensgen
Since yesterday, I have gotten about 80 of these emails from you and others at this email address.  I think somehow I accidently got put on a distribution list of what appear to be internal Google emails.  Please remove my email address.   Thanks. --- On Thu, 3/26/09, shs

[jQuery] Trouble styling submenus of Superfish

2009-03-26 Thread Kath
Hi there, I'm having a problem styling the submenus of Superfish. The text on hover jumps a few px to the left. I have played around with it, but I can't figure it out. If I add in padding-left: 5px to this in the css .sf-menu li:hover, .sf-menu li.sfHover, .sf-menu a:focus, .sf-menu

[jQuery] .load() problems in ie

2009-03-26 Thread derrickkwa
hi... i'm trying to code a site, you can see it at http://derrickkwa.com/6amb/index.html so far, i've only implemented the first link in the navigation menu (work - equipment), and clicking on the logo brings it back to the home page. here's my question, though. it works perfectly fine in

[jQuery] Timers and jQuery problem

2009-03-26 Thread John Leidegren
What is wrong with this code? $(document).ready(function() { var a = $(#job-banner-content div); if (a.length 0) { var i = 0; var f = function() { i += Math.max(1, Math.floor(Math.random() * (a.length - 1))); var b = a.eq(i % a.length).css(top,

[jQuery] Re: question about getJSON and surrounding JavaScript comments in JSON

2009-03-26 Thread nick hensgen
Since yesterday, I have gotten about 80 of these emails from you and others at this email address.  I think somehow I accidently got put on a distribution list of what appear to be internal Google emails.  Please remove my email address.   Thanks. --- On Thu, 3/26/09, MorningZ

[jQuery] Re: tablesorter plugin

2009-03-26 Thread nick hensgen
Since yesterday, I have gotten about 80 of these emails from you and others at this email address.  I think somehow I accidently got put on a distribution list of what appear to be internal Google emails.  Please remove my email address.   Thanks. --- On Thu, 3/26/09, David

[jQuery] Re: tablesorter plugin

2009-03-26 Thread David
On 26 mrt, 13:45, nick hensgen lacey...@yahoo.com wrote: Since yesterday, I have gotten about 80 of these emails from you and others at this email address.  I think somehow I accidently got put on a distribution list of what appear to be internal Google emails.  Please remove my email

[jQuery] Timing of 1.3.3 release

2009-03-26 Thread dberthia
Anybody have any insight into when 1.3.3 might be released? There are a couple of bugs that are wreaking havoc on our application, but have apparently been fixed in 1.3.3 (#3993 and #4017). Thanks, - Dave

[jQuery] Re: Pointless but fun jQuery experiment

2009-03-26 Thread Andy Matthews
That's stinkin' awesome! Very cool. I'm not even ask how you did it (I'll just view source). :) -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Kelvin Luck Sent: Wednesday, March 25, 2009 8:22 PM To: jquery-en Subject: [jQuery]

[jQuery] Re: Need to get value of table cell

2009-03-26 Thread Webspeeder
I have the table ID as well as the row ID. On Mar 25, 6:32 pm, Josh Powell seas...@gmail.com wrote: What unique identifier do these cells have? Do the cells have id's? $('#theid').  Do the rows have ids? $('#theid td').get(1) will get you the second cell of the row with an id of 'theid',

[jQuery] Re: Timing of 1.3.3 release

2009-03-26 Thread John Resig
Why not just use a nightly build? No need to wait for a full release. http://code.jquery.com/nightlies/jquery-2009-03-26.js --John On Thu, Mar 26, 2009 at 9:03 AM, dberthia dave.berthia...@gmail.com wrote: Anybody have any insight into when 1.3.3 might be released? There are a couple of

[jQuery] Re: why does load cost so much time?

2009-03-26 Thread Samuel
Hope get your helps. On Thu, Mar 26, 2009 at 1:14 AM, Samuel samuel.yh...@gmail.com wrote: supplement more information on the issue. $('.words') have html data, ie, this node is not empty, so it must cost some time to remove the children. I made tens of tests, and the average of data()

[jQuery] Re: slide/scroller to top

2009-03-26 Thread Ariel Flesler
The browser scrollbar ? If so: With the ScrollTo plugin [1]: $.scrollTo( 0 ); You can add a duration as second argument (f.e: 1000). [1] http://flesler.blogspot.com/2007/10/jqueryscrollto.html -- Ariel Flesler http://flesler.blogspot.com On Mar 25, 12:41 pm, introvert

[jQuery] Re: scrollto and jumping

2009-03-26 Thread Ariel Flesler
In case James comment doesn't do for you, please provide a demo. -- Ariel Flesler http://flesler.blogspot.com On Mar 24, 11:27 pm, kevinm sonicd...@gmail.com wrote: I have a vertical scrolliing area and inside the first area I have an a link that when clicked calls scrollto to scroll the main

[jQuery] Re: getJSON

2009-03-26 Thread iceangel89
i still cant out put anything even with a simple alert(json); in firebug i see that ... below ... is returned [ {Value: 1, Item: Physics}, {Value: 2, Item: Chemistry}, {Value: 3, Item: Biology} ]; On Mar 26, 5:34 pm, jakenoble j...@jakenoblewebs.co.uk wrote: Shouldn't your JSON return values

[jQuery] no :ge : le filters?

2009-03-26 Thread donb
If I could 'or' :eq and :gt somehow then there's the answer - but I haven't seen that talked about. Is it possible? I'd like to accomplish: $(div.foo:ge(2)).remove()

[jQuery] Re: getJSON

2009-03-26 Thread iceangel89
ok i solved it, it shld be something like { departments: { department: {ID: 1, Name: Physics}, department: {ID: 2, Name: Chemistry }, department: {ID: 3, Name: Biology},}} instead, use of {} and departments: d: {xxx}, d: {yyy}, d: {zzz} am i right to say all these are required? {} and

[jQuery] looping through json

2009-03-26 Thread iceangel89
how can i loop through json like: { departments: { department: {ID: 1, Name: Physics}, department: {ID: 2, Name: Chemistry}, department: {ID: 3, Name: Biology} }} i tried $.each(json.departments.department, function(i, n) { alert(i + + n); }); and got ID: 3 Name: Biology

[jQuery] Re: looping through json

2009-03-26 Thread MorningZ
$.each(json.departments, function(department, dictionary) { alert(ID: + dictionary.ID + \nName: + dictionary.Name); }); iceangel89 wrote: how can i loop through json like: { departments: { department: {ID: 1, Name: Physics}, department: {ID: 2, Name: Chemistry},

[jQuery] ui.tabs : callback show doesn't work

2009-03-26 Thread Minus
Hello. I meet a strange problem with ui.tabs that I can't understand. I have 2 tabs which work fine. There are few links in the first tab and when I click one of these links, the second tab is selected... this part works fine. But I want the second tab scroll down the description, and I've a

[jQuery] Re: why does load cost so much time?

2009-03-26 Thread Leonardo K
Maybe this question about performance should be ask in jQuery Dev Group. :D On Thu, Mar 26, 2009 at 10:36, Samuel samuel.yh...@gmail.com wrote: Hope get your helps. On Thu, Mar 26, 2009 at 1:14 AM, Samuel samuel.yh...@gmail.com wrote: supplement more information on the issue. $('.words')

[jQuery] Re: Cycle Plugin : [cycle] terminating; too few slides: 1

2009-03-26 Thread Asinox
Well my foreach is fine, all tags are closed fine, firebug report my request fine but for this case, now im using something that i found using mootools Thanks u On Mar 24, 11:59 pm, pedalpete p...@hearwhere.com wrote: Yeah, but I've seen the same thing in my code, and it turned out I

[jQuery] Jquery Tabs, want to remove white line under selected tab, without removing line under unselected tab

2009-03-26 Thread Martin
Hello, My Jquery Tags are working perfectly. But the only problem I am now experiencing is the selected tabs have a 1px white line underneath them. I have matched the colour of the tab and pane, but the 1px line underneath makes the tabs look separate from the pane. Has anyone encountered

[jQuery] html to text

2009-03-26 Thread bart
I'm pulling html from each td tag which resides in the tablerow of a table like so; $('table tr td').each(function() { $('div').text($(this).html()).appendTo('#jaheur'); }); For each match it creates a div which holds the HTML in text format. I noticed that it transformed a line break

[jQuery] Re: html to text

2009-03-26 Thread Martijn Houtman
On Mar 26, 2009, at 4:19 PM, bart wrote: For each match it creates a div which holds the HTML in text format. I noticed that it transformed a line break br / to br (without the slash) what causes this behavior? Does this only happen with self closing tags? Can I prevent it all together? I

[jQuery] Inserting rows of DIVs to create a list

2009-03-26 Thread nmiddleweek
Hello, I'm trying to create a dynamic list of data using jQuery... Each row will have an INPUT and a BUTTON element. I'm thinking of holding a hidden 'template' for each row and then duplicating the 'template' row for each row needed and then edit the ID and innerHTML of the DOM elements for

[jQuery] Re: Inserting rows of DIVs to create a list

2009-03-26 Thread MorningZ
of course it's possible. you'd use: - a variable that contains the string that is the template - JavaScript's .replace method to fill in the ID and HTML also, there's plenty of template plugins out there (chain.js, jTemplate) On Mar 26, 11:34 am, nmiddleweek nmiddlew...@googlemail.com

[jQuery] Re: Convert js to jquery

2009-03-26 Thread mdjamal
Hi, Thanks again, that solves my problem :-) Ciao.

[jQuery] Re: no :ge : le filters?

2009-03-26 Thread Karl Swedberg
On Mar 26, 2009, at 10:14 AM, donb wrote: If I could 'or' :eq and :gt somehow then there's the answer - but I haven't seen that talked about. Is it possible? I'd like to accomplish: $(div.foo:ge(2)).remove() well, you could do $(div.foo:gt(2), div.foo:eq(2)).remove() or $

[jQuery] selecting children

2009-03-26 Thread david.garc...@barcelonamedia.org
Hi, my question is, why next line doesn't work: $(#conditions-+get_sufix(type)+ div,tr,span,label,select,input).each(function(){...}); nor next line: $(#conditions-+get_sufix(type)+ div,tr,span,label,select,input).each(function(){...}); nor next line:

[jQuery] Re: Inserting rows of DIVs to create a list

2009-03-26 Thread nmiddlew...@gmail.com
Hi, thanks for your reply... I was thinking of storing the template in the DOM so it's visible by our web designer to tweat. How would I read that template (DIV block) into a javascript variable? Thanks for your help! On Mar 26, 3:44 pm, MorningZ morni...@gmail.com wrote: of course it's

[jQuery] Re: html to text

2009-03-26 Thread bart
I have a HTML document with some hardcoded content in it. This content needs to be moved to a database so I have jQuery helping me with some html manipulation left and right to batch some queries. As I want to insert valid xhtml into the database br won't do. But I understand that how these self

[jQuery] PNG Fix option that doesn't resize background PNGs?

2009-03-26 Thread D A
I am using Andreas Eberhard's PngFix plugin: http://plugins.jquery.com/project/pngFix Unfortunately, there's a known issue with it resizing background images to fit the container. I am using a PNG sprite so create a rollover effect for some buttons. As such, I don't want the background resized,

[jQuery] cluetip ajaxcache:false does not work in IE7

2009-03-26 Thread Geert Baven
How can l have IE 7 respect the ajaxcache set to false? you can see an example at http://www.strikingconcepts.nl/development/kittiwake the first tooltip is an experiment provides an examplein the cluetip.js file I have set the option like this: ajaxCache:false, any help appreciated

[jQuery] Re: one check box to select entire group

2009-03-26 Thread Andy H
Here's the html for you. table tr th/th thTitle/th thinput type=checkbox name=chk_cat1 id=chk_cat1 // th thinput type=checkbox name=chk_cat2 id=chk_cat2 // th /tr tr tdinput type=checkbox name=chk_row1 id=chk_row1 // td tdDescription

[jQuery] Re: Inserting rows of DIVs to create a list

2009-03-26 Thread mkmanning
a dynamic list implies something more semantic than a row of divs, say a UL or DL...but if you want divs, here's a quick example: div id=template style=display:none;!-- everything inside this div will be cloned -- divinput type=text id=tmp_input /button/button/div /div

[jQuery] Get element position relative to the body

2009-03-26 Thread Shedokan
Is it possible to get the position of an object relative to the dcument if it's a floating object inside elements? thanks.

[jQuery] Re: [form] Handling re-ajax'ing a form after a submission attempt

2009-03-26 Thread berbercarpet
ignore that, better: function initSigninForm() { var options = { target: '#mainContent', dataType: 'json', beforeSubmit: showRequest, success: showSignInResponse } $('#mainContent form').ajaxForm(options); } function showSignInResponse(xhr) { if

[jQuery] Slow jQuery Event Cleanup in Firefox

2009-03-26 Thread J K
Let me start by saying that I am doing something rather unorthodox with jQuery, and I realize that this is probably outside the realm of what is reasonable. I have a 65x65 HTML table, giving me 4225 TD cells. I am making each of them clickable with the following code: $('td').click(function ()

[jQuery] Jquery validation plugin question

2009-03-26 Thread markstegg...@googlemail.com
Hello, Thanks for building this validation plugin, I like it. I have a question: The error class automatically gets added to the label with the same for= name, but for a certain error I need to change the element that gains the error class. For instance, I added this line to the error

[jQuery] Re: [form] Handling re-ajax'ing a form after a submission attempt

2009-03-26 Thread berbercarpet
On Thu, Mar 26, 2009 at 12:45 AM, kevin young.ke...@gmail.com wrote: I got the ajax form submit working, but on form validation failure I am passing back the form html within a json object and I re-stuff the div container with the form html in order to render out form errors. My problem is

[jQuery] Superfish join code clarity patch

2009-03-26 Thread Virtual Machine
These join statements seemingly behave the same as simple string concatenation, the latter being much more readable. Index: superfish.js === --- superfish.js(revision 36485) +++ superfish.js(working copy) @@ -15,7

[jQuery] change onmouseover function call

2009-03-26 Thread Air YT
hi there, have a puzzling one. i have a fairly simple function call that we use to display tooltips over certain image elements. we put the function call in the onmouseover attribute of the image element. looks like this: script function CreateTip( strTipMessage ) { // GENERATE TOOLTIP }

[jQuery] Re: jQuery contextmenu problems

2009-03-26 Thread aramgt
Do you have a demo? On 15 feb, 07:03, micho mich...@gmail.com wrote: Okay, so searching and searching I found that the problem is really in this block:     $.each(cur.bindings, function(id, func) {       $('#'+id, menu).bind('click', function(e) {         hide();         func(trigger,

[jQuery] SlideDown() nested div?

2009-03-26 Thread Erika
I have a flv video nested inside of a div that slides down using slideDown(). Is there any way to get the flv video to slide down along with the parent div? Currently, the video pops up after the slide down motion has completed.

[jQuery] refresh a DIV

2009-03-26 Thread Progressed
I have a DIV with a php query in it. i'd like to get pointers to maybe 2 solutions. Ideal situation: I have a other jquery script that launches an onComplete like: 'onComplete': { } basicly i want to let it do a refresh on div id='records' #My sql query# /div other situation I want to

[jQuery] Help with jquery functions

2009-03-26 Thread Progressed
dear members, new on the whole jquery thingie, and need help on for the follwing: I want to refresh a dive that contains a php query. It has to refresh every 3 seconds. What i see is that the follwing code isnt correct. it also starts $(document).ready... twice... it has to be wrong, but what

[jQuery] listnav plugin

2009-03-26 Thread kristy...@gmail.com
I'm having trouble installing this. Not quite sure why it isn't working. Does anyone have a tutorial online on how to implement this or could look over mine and see what i'm doing wrong? I imagine it's something simple. thanks! Kristy lee http://www.klcreativedesign.com/suasion/glossary

[jQuery] How to get the inline value for 'Display' style property via jquery/js??

2009-03-26 Thread KansasCoder
I have an inline css attribute which is set in the codebehind but changes dynamically in the browser via jquery. The display of a textbox and a couple of dropdowns are altered formblock to none based on some rules. When I view the source of the page the dropdown that is visible still has the

[jQuery] Re: Thickbox half-works.

2009-03-26 Thread Bert
Thickbox gives this error with the latest JQuery version. use version 1.2.6, worked for me that way. greetz www.twitter.com/Be_Bert On 25 mrt, 15:46, Devin devin.corm...@gmail.com wrote: This is my code.   The problem I'm having is that when I click the thumbnail all I see the loading bar.  

[jQuery] Sort tables with hidden (.accordian collapsed) rows

2009-03-26 Thread Colin.Houghton
I have a table where every other row is collapsed (using .toggle). I want to sort on the visible rows, but the sort, of course, sorts the hidden rows as well...the result is that the hidden rows may not longer be associated with the same parent row. Here is a snippet: table id=aSortableTable

[jQuery] Temporarily disable inline onclick

2009-03-26 Thread Adam Walters
Hello, I was wondering if there was a way to temporarily disable an inline onclick event, which i can reattach later. Here's the scenario: My page has an edit mode which makes the text of certain elements editable. Edit mode is enabled - text that is editable gets a click event bound to it by

[jQuery] Problems using JRC corner or curvycorner

2009-03-26 Thread banacan
I'm creating a page with many divs that I would like to have rounded corners, and several problems keep coming up. When using JRC for rounding, not all elements will round even though they have the correct class. Reloading the page will, after several attempts, create the rounded corners,

[jQuery] Event Cleanup Slowness in Firefox

2009-03-26 Thread J K
I have a 65x65 HTML table, giving me 4225 table cells. I am using jQuery to make each cell clickable with the following code: $('td').click(function () { // do stuff }); I realize this is a lot of events and that this is likely well outside the realm of

[jQuery] Beginner Question

2009-03-26 Thread Flavouski
In JQuery I saw you can get attributes by saying foo.attr(value), super handy. Is there anyway to get the element of the thing that contains the attribute? Reasoning: I've got a few hidden inputs that have name=firstName value=Bob name=lastName value=Bobble So I would want to say get the

[jQuery] Re: Jquery validation plugin question

2009-03-26 Thread Jörn Zaefferer
Use the highlight and unhighlight options for that. Jörn On Thu, Mar 26, 2009 at 3:21 PM, markstegg...@googlemail.com markstegg...@googlemail.com wrote: Hello, Thanks for building this validation plugin, I like it. I have a question: The error class automatically gets added to the label

[jQuery] Re: Inserting rows of DIVs to create a list

2009-03-26 Thread nmiddlew...@gmail.com
Thank you! This is exactly what I'm after Cheers, Nick On Mar 26, 4:34 pm, mkmanning michaell...@gmail.com wrote: a dynamic list implies something more semantic than a row of divs, say a UL or DL...but if you want divs, here's a quick example: div id=template style=display:none;!--

[jQuery] Re: Slow jQuery Event Cleanup in Firefox

2009-03-26 Thread Matt W.
You might want to try adding one click to the table and checking if the target was a td. On Mar 26, 7:13 am, J K artlo...@gmail.com wrote: Let me start by saying that I am doing something rather unorthodox with jQuery, and I realize that this is probably outside the realm of what is

[jQuery] Re: Problems using JRC corner or curvycorner

2009-03-26 Thread Nikola
I've found JRC and the Bullet Proof CornerZ PlugIns to be foolproof... except in IE8 thus far. On Mar 26, 11:44 am, banacan banaca...@gmail.com wrote: I'm creating a page with many divs that I would like to have rounded corners, and several problems keep coming up. When using JRC for

[jQuery] Re: Slow jQuery Event Cleanup in Firefox

2009-03-26 Thread MorningZ
These articles will really help clean up your events http://www.learningjquery.com/2008/03/working-with-events-part-1 http://www.learningjquery.com/2008/05/working-with-events-part-2 On Mar 26, 1:20 pm, Matt W. propel...@gmail.com wrote: You might want to try adding one click to the table

[jQuery] Superfish over a Cycle element in IE 7

2009-03-26 Thread thejon
I spent hours looking for an answer to this and here is the solution: When you want your Superfish menu to appear over a Cycle slideshow, make your .sf-menu, .sf-menu * look like this: .sf-menu, .sf-menu * { }

[jQuery] Ajax call with XML Response

2009-03-26 Thread moocher
Hi, I'm very new to JQuery and am having a problem with an Ajax call that returns xml. The error event is being fired, but the textStatus value is 'parserror' and the errorThrown value is 'undefined'. The xml response is valid so i'm not sure what could be wrong. $.ajax({ beforeSend:

[jQuery] Re: Jquery.media fails with querystring

2009-03-26 Thread Nico
Hi, today I tried to upgrade from jQuery Media 0.8 to 0.87, and I met the same problem. With version 0.8, jQuery.media was able to handle links like this : a href=mms://path/to/my/video.wmv?arg=valuelink/a The media type was correct (Windows media player). With version 0.87, jQuery.media

[jQuery] Re: listnav plugin

2009-03-26 Thread Jack Killpatrick
Something is causing your glossary-nav span to be hidden in the HTML (and also not found by the listnav plugin). Try running the HTML through a validator. I tried seeing what was causing the span to be hidden, using Firebug, but didn't immediately see the cause. - Jack kristy...@gmail.com

[jQuery] Re: Beginner Question

2009-03-26 Thread Karl Swedberg
Just use an attribute selector. For example: $('input[name=firstName]') http://docs.jquery.com/Selectors/attributeEquals#attributevalue --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 26, 2009, at 10:04 AM, Flavouski wrote: In JQuery I saw you can

[jQuery] Re: Temporarily disable inline onclick

2009-03-26 Thread James
I think you should probably unbind that inline onclick attribute on page ready and re-assign your own onclick function with jQuery (even if it's the same thing). Save your custom onclick callback function to a variable (as in, separate it from the onclick assignment so it's a standalone function

[jQuery] Re: Event Cleanup Slowness in Firefox

2009-03-26 Thread Karl Swedberg
don't know why it's so much slower in Firefox, but if you're dealing with that many elements, you ought to consider using event delegation instead. You can use the .live() method ... $('td').live('click', function() { // do stuff }); ... or roll your own

[jQuery] Re: refresh a DIV

2009-03-26 Thread James
What does refresh mean? Re-insert data into the element? If so, you only need: $(#records).html('put whatever you want here'); To refresh every 5 seconds, you can use Javascript's setInterval() function. function doRefresh() { $(#records).html('put whatever you want here'); }

[jQuery] data-URLs for IE workaround

2009-03-26 Thread sleepwalker
Hi, Does anyone have a work around the lack of support for data-URLs in IE. I've seen some crazy php scripts using mhtml + vml but php isn't supported in the environment I'm working in. Thanks for your Help. Daniel

  1   2   >