[jQuery] Re: Incorporating SVG Roundies Via jQuery

2009-05-02 Thread kiusau
On May 1, 3:00 pm, waseem sabjee waseemsab...@gmail.com wrote: try adding this code ABOVE the $(document).ready(function() {.. var $k = JQuery.noConflict(); then replace all the jquery $ signs with $K let me know if this solved your issue I have done as you suggested off-line, but there

[jQuery] Dialog position : relative

2009-05-02 Thread led
How can i set the position of dialog relatively to element( as a tooltip)?

[jQuery] [Form submittion not working]any error in the code..... please check

2009-05-02 Thread Amit
$(document).ready( funtion(){ return false; $("#send").click( function(){ $.post("lib/ajax/requests.php", { action: "postrecommendmypros", projectname: {ALL_SEARCH_TXT}, firstname: {CLIENT_FIRSTNAME}, lastname: {CLIENT_LASTNAME},

[jQuery] listnav, but for tables?

2009-05-02 Thread Tor
I'm looking for a plugin like the listnav plugin (demo: http://www.ihwy.com/Labs/Demos/Current/jquery-listnav-plugin.aspx), but for tables? I'd like to filter / select rows in a table based on the first letter of one of the rows in the table. The listnav plugin is exactly what I'm after, but it

[jQuery] ready function mystery

2009-05-02 Thread rodeored
This page: http://reenie.org/jquery/ is linked to 1.js which has this code: $(document).ready(function(){ $('#myForm').livequery(function(){ alert('why is this happening?'); return false; }); }); When the page is first loaded, it triggers the alert. It doesn't seem like it

[jQuery] Re: ready function mystery

2009-05-02 Thread Abrar Arshad
hi, what i understood from your explanation is that you expect from livequery() method not to trigger any event on load event of the page. Well first of all, livequery() also handles those elements which are not present initially when the page is loaded for the first time, so that behavior

[jQuery] Re: CSS Style Property Assigned by Class

2009-05-02 Thread Paul Mills
Hi, I think it may be to do with 'border' being shorthand for all the individual border properties. If you code this $('#byClass').append($('#byClass').css('border-top-width')); then it shows the width as '1px'. hth Paul On May 1, 9:39 pm, Panman01 rpann...@gmail.com wrote: One thing to note,

[jQuery] Superfish

2009-05-02 Thread Bart
'Hello, i'm using the Superfish menu just recently. It works almost like a charm. Exept if i open in other browser then IE it shows bullets in front of the menu items. For example open in let's say Firefox; www.7evenfashion.nl/webshop. Now to see the difference in IE. I'd like to get rid of these

[jQuery] HELP: how to browser cache json request?

2009-05-02 Thread wgordonw1
I cannot figure out how to get my json file to be cached by the browser when I download it with an ajax request. I have tried two different methods: method one: $.ajax({ type: GET, url: long_url.json, dataType: json, cache: true,

[jQuery] Jquery not working in jsp

2009-05-02 Thread poluris82
I'm a jquery newbie and am trying to use it in a simple web application. This application has a controller servlet that forwards the request to a 'login.jsp' page by default. In the login.jsp page, I used Jquery for the hover effect on the submit button. If I name my file 'login.html', it works

[jQuery] Class selection

2009-05-02 Thread T
I need to select all elements that have a class name that is the last element of the class list. So I may have class=class1 class2 class3 for one element and class=class3 class1 class2 for another... I only want to affect everything that has the last class as class3. So in this example, the

[jQuery] Re: thickbox like in front page of Jquery website

2009-05-02 Thread sebastienj
nobody's know?

[jQuery] Re: Dialog position : relative

2009-05-02 Thread Richard D. Worth
Currently, you have to calculate the position of the element, then use dialog's position option: http://docs.jquery.com/UI/Dialog#option-position which accepts an array [x, y]. In a future version you'll be able to simply specify the element you want it positioned relative to, with the help of

[jQuery] Re: state of the art for corner rounding?

2009-05-02 Thread Richard D. Worth
One of the best ones I've seen lately is DD_roundies, by Drew Diller: http://www.dillerdesign.com/experiment/DD_roundies/ Here's an article by Filament Group that shows how you can use DD_roundies to extend support of jQuery UI's border radius to IE:

[jQuery] Edit in place plugin

2009-05-02 Thread bharani kumar
Hi all Can u you please tell me , How to do the Edit in place using jquery , Thanks -- உங்கள் நண்பன் பரணி குமார் Regards B.S.Bharanikumar POST YOUR OPINION http://bharanikumariyerphp.site88.net/bharanikumar/

[jQuery] Re: POST Redirection

2009-05-02 Thread Cryptonit
Could you please be a little more precise? I've installed firebug, now what? Maybe I also have to be more specific: I don't create a web page, I'm creating a firefox extension. So I can't just debug everything I like... Could you please point me to the exact property I have to look for? On 2

[jQuery] Re: Nyromodal frame reference

2009-05-02 Thread firebadger
Can anybody please help? On Apr 14, 10:33 pm, Alan Flisch a...@flisch.net wrote: Hi, I'm using Nyromodal to show some web content that includes page transitions controlled by Javascript that specifies window.location. The trouble with this is that it navigates the main browser window rather

[jQuery] Cannot make function run on load event

2009-05-02 Thread kyleduncan
Hi, i use jQuery 1.3 and would like to make the following code run as soon as the elements i am targeting have loaded (or as soon as the page has finished loading). At the moment, I can only get it to fire on an event related to the target (in code below i'm using hover). Ihave put this snippet

[jQuery] Re: Black border on jQuery animations in IE 6-8

2009-05-02 Thread kyleduncan
i think that happens when the elements being animated have PNG images in them or as backgrounds, that's where i see the ragged black edges you're talking about... i'm not aware of a solution as i guess it's down to IE not natively supporting PNGs. i have a pngfix installed to enable PNG

[jQuery] Re: ready function mystery

2009-05-02 Thread rodeored
I tried your suggestion and I found that the livequery function binds without being in the ready event. However, on this page, #loginlink binding is inside the ready event. http://highfallsfoodcoop.com And on this page I moved it out of the ready event http://highfallsfoodcoop.com/test.php On

[jQuery] Re: Cannot make function run on load event

2009-05-02 Thread kyleduncan
UPDATE I have found out why this isn't working, but don't know the solution. the problem is that this code just runs on the first matching element (the first div with class expandCollapse) and then, based on the height of its parent, applies the rest of my code to ALL instances of

[jQuery] Re: POST Redirection

2009-05-02 Thread Danny Nolan
got it installed? Enable it, have it running while viewing the form. Now submit the form and firebug will capture the post URL, will popup inside the firebug window. --- On Sat, 5/2/09, Cryptonit dom.helfenst...@gmail.com wrote: From: Cryptonit dom.helfenst...@gmail.com Subject: [jQuery] Re:

[jQuery] Re: Cannot make function run on load event

2009-05-02 Thread kyleduncan
solved! i discovered the each() method, which runs my code beautifully as follows: $('div.expandCollapse').each(function() { $(this).parent().css(height,auto); var fullHeight = $(this).parent().height(); if (fullHeight == 77) {

[jQuery] Re: listnav, but for tables?

2009-05-02 Thread Jack Killpatrick
Hi, I wrote the listnav plugin. Can you elaborate a little more on how you'd want it to work? There might be a selector we can tweak to make it do what you want (like use tr instead of li). - Jack Tor wrote: I'm looking for a plugin like the listnav plugin (demo:

[jQuery] Disable user input to a div

2009-05-02 Thread Dragon-Fly999
Hi, I have a page with a few divs. One of the divs contains several anchors, text boxes, and list boxes. Under certain error conditions, I need to disable all the anchors, text boxes, and list boxes inside that div (but other divs on that page should not be disabled). What is the easiest way

[jQuery] Re: Disable user input to a div

2009-05-02 Thread MorningZ
easiest is going to vary from one person to another, but if it was me, i'd use the BlockUI plugin to prevent the user from doing anything further to stuff inside that div On May 2, 12:59 pm, Dragon-Fly999 dragon-fly...@hotmail.com wrote: Hi, I have a page with a few divs.  One of the divs

[jQuery] Re: Disable user input to a div

2009-05-02 Thread Jordon Bedwell
The easiest way to do that would be to remove it from the DOM, one of the other easy ways is to just rewrite the link to # and disable the inputs (you can disable inputs), but the best way in my opinion would be to use an overlay. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: Disable user input to a div

2009-05-02 Thread Dragon-Fly999
MorningZ, I'll check out the BlockUI plugin. Jordon, could you explain how to use an overlay on a div? Thank you. On May 2, 1:26 pm, Jordon Bedwell jor...@envygeeks.com wrote: The easiest way to do that would be to remove it from the DOM, one of the other easy ways is to just rewrite the link

[jQuery] Re: state of the art for corner rounding?

2009-05-02 Thread kiusau
On May 2, 5:21 am, Richard D. Worth rdwo...@gmail.com wrote: One of the best ones I've seen lately is DD_roundies, by Drew Diller: http://www.dillerdesign.com/experiment/DD_roundies/ DD Roundies were designed for an IE environment. They do not work well in the Firefox, Opera, and Safari

[jQuery] Re: listnav, but for tables?

2009-05-02 Thread aquaone
alternatively, there's a plugin i'm working on here: http://bluemoon.reverse.net/~aquaone/tablefilter/ On Sat, May 2, 2009 at 00:46, Tor torgeir.ve...@gmail.com wrote: I'm looking for a plugin like the listnav plugin (demo: http://www.ihwy.com/Labs/Demos/Current/jquery-listnav-plugin.aspx),

[jQuery] Is any one else experiencing serious slowdowns on their site due to 'waiting for jqueryui.com' ?

2009-05-02 Thread stasch
I was surprised to today to discover that my site was running much slower than usual (3 to 4 times slower!). Most of the delay was spent with the message 'waiting for jqueryui.com'. This really freaked me out. First of all what gives the jquery folks the right to ping their site from their

[jQuery] Re: Incorporating SVG Roundies Via jQuery

2009-05-02 Thread kiusau
On May 1, 3:02 pm, waseem sabjee waseemsab...@gmail.com wrote: new information $(body).getBrowserInformation is not a function I discovered the source of this error. I found a space in the file name that includes the getBrowserInformation( ) method. When I removed it the method was found

[jQuery] Re: Is any one else experiencing serious slowdowns on their site due to 'waiting for jqueryui.com' ?

2009-05-02 Thread Michael Geary
It sounds like you must be loading some JavaScript files directly from jqueryui.com. Instead of that, you should load the files from your own server or use Google's copies: http://code.google.com/apis/ajaxlibs/ If you would post a link to your site, I'm sure someone can give you more specifics.

[jQuery] Re: Is any one else experiencing serious slowdowns on their site due to 'waiting for jqueryui.com' ?

2009-05-02 Thread Nikola
I experienced this, yes. In my case it was the Themeroller Dev tool which was slowing things down. Additionally, I wasn't able to download any themes. I'd say it's probable that the Themeroller and Dev tool are being updated at this time. On May 2, 4:08 pm, Michael Geary m...@mg.to wrote: It

[jQuery] Re: Is any one else experiencing serious slowdowns on their site due to 'waiting for jqueryui.com' ?

2009-05-02 Thread Alexandre Plennevaux
Hi Stasch, Be careful before you blame others of wrong deeds... unless you enjoy making a fool of yourself. Make sure you check the issue is not from your side as there is absolutely no such code in jquery, nor in jquery-ui. My guess is that you did some wild copy/pasting from the jquery-ui

[jQuery] Re: Is any one else experiencing serious slowdowns on their site due to 'waiting for jqueryui.com' ?

2009-05-02 Thread hro
Same problem here. jqueryui.com is down. On May 2, 11:18 am, stasch stash...@gmail.com wrote: I was surprised to today to discover that my site was running much slower than usual (3 to 4 times slower!).  Most of the delay was spent with the message 'waiting for jqueryui.com'.  This really

[jQuery] Re: any error in the code..... please check

2009-05-02 Thread mkmanning
You spelled function 'funtion' and the first thing you do is return false, so everything after that is ignored--by js and me :) On May 2, 12:39 am, Amit amit.mca...@gmail.com wrote: $(document).ready(         funtion(){         return false;             $(#send).click(                

[jQuery] Re: How to select all text in a div except ul

2009-05-02 Thread nick
Thanks for the response. Are you sure thats correct though? alert($('div').contents().filter(function(){return this.nodeType==3;}).text()); returns empty.

[jQuery] Re: How to select all text in a div except ul

2009-05-02 Thread mkmanning
Don't use .text(), you'll get an array-like object of text nodes. Try var text = $('div').contents().filter(function(){return this.nodeType==3;}); console.log(text) On May 2, 6:06 pm, nick nboutel...@gmail.com wrote: Thanks for the response. Are you sure thats correct though?

[jQuery] jQ Methods Load Order

2009-05-02 Thread kiusau
QUESTION: How does one set the order in which jQuery methods are called? BACKGROUND: Unlike jQ-Impromptu website (see SOURCES below) that launches jQ-Impromptu with mouse clicks, I would like to launch jQ- Impromptu after my page has completely loaded, but before the user can do anything of

[jQuery] Re: Is any one else experiencing serious slowdowns on their site due to 'waiting for jqueryui.com' ?

2009-05-02 Thread Richard D. Worth
Thanks for the note. It's back up. - Richard On Sat, May 2, 2009 at 3:52 PM, hro hrayr.artun...@gmail.com wrote: Same problem here. jqueryui.com is down. On May 2, 11:18 am, stasch stash...@gmail.com wrote: I was surprised to today to discover that my site was running much slower than

[jQuery] Form to HTML Possible

2009-05-02 Thread Zoren
Hello Everyone, I wanted to know if there was a plugin that would allow users to enter form fields and have that input populate table cell information on a separate page. I need this to be flat file based without a server side language like php/.net. I've seen javascript page editors but I need

[jQuery] textarea with line number

2009-05-02 Thread furionn
Hi all. I am noob in Jquery. Help pls. How to make textarea with line number ? Here is my code: script type=text/javascript function f1() { var lines = $('#txt').val().split('\n'); var line_number_size = $('#line_number li').size()+1; var max =

[jQuery] Binding hrefs in table entries

2009-05-02 Thread Ingo
Hi, I'm quite new to jQuery and have a question. I'm populating a table with rows where some of the columns include links and buttons. For some of these links and buttons I want to run some jQuery stuff before it's redirected (acually, I want to have the result loaded in a div via ajax). In the

[jQuery] $().someFunction(); -- The First Pair of Parentheses?

2009-05-02 Thread kiusau
QUESTION: What does the first pair of parentheses indicate in the following statement: $().getBrowserInformation(); BACKGROUND: I have noticed that their presence or absence can make or break JavaScript's acknowledgement of a method's existence on the one hand, but seem entirely