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 unnece
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
Hi all. I am noob in Jquery. Help pls.
How to make textarea with line number ?
Here is my code:
function f1()
{
var lines = $('#txt').val().split('\n');
var line_number_size = $('#line_number li').size()+1;
var max = lines.length;
Hello,
Trying to use jquery to validate that a minimum of 7 check boxes are
selected. the code is as follows:
$(document).ready(function()
{
$("form").submit(function()
{
if (!isCheckedById("AreasOfInterest[]"))
{
alert ("P
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
t
Thanks for the note. It's back up.
- Richard
On Sat, May 2, 2009 at 3:52 PM, hro wrote:
>
> Same problem here. jqueryui.com is down.
>
> On May 2, 11:18 am, stasch wrote:
> > I was surprised to today to discover that my site was running much
> > slower than usual (3 to 4 times slower!). Most
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 his
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 wrote:
> Thanks for the response. Are you sure thats correct though?
>
> alert($('div').contents().filter
Thanks for the response. Are you sure thats correct though?
alert($('div').contents().filter(function(){return
this.nodeType==3;}).text());
returns empty.
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 wrote:
> $(document).ready(
> funtion(){
> return false;
> $("#send").click(
> function(){
>
Same problem here. jqueryui.com is down.
On May 2, 11:18 am, stasch 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 freaked me
> out.
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
demo
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" wrote:
> It sounds
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.
On May 1, 3:02 pm, waseem sabjee 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 and the alert box app
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 code
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 wrote:
>
> 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?
>
>
On May 2, 5:21 am, "Richard D. Worth" 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 environments. Thi
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" 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 to # and disable
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 [mailt
"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
On May 2, 12:59 pm, Dragon-Fly999 wrote:
> Hi,
>
> I have a page with a few divs. One of the divs contains several
> anchor
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 o
bump. Anyone eval'd the corner plugins recently enough to have an opinion?
Thx.
Jack
Jack Killpatrick wrote:
Hi All,
I have a half dozen bookmarks for rounded corner plugins, but am
wondering if there's a "state of the art" plugin kicking any booty on
that these days? What I'd *really* lik
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:
http://www.ihwy.com/Labs/De
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) {
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 wrote:
From: Cryptonit
Subject: [jQuery] Re: POST Redirection
To: "jQuery (English)"
Date: Satur
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
"div.expandC
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 t
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 snippe
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 transparen
Can anybody please help?
On Apr 14, 10:33 pm, Alan Flisch 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
> than nav
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 Mai,
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/
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:
http://www.filamentgroup.com/lab/achieving_ro
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
th
nobody's know?
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 firs
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 a
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: t
'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
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 wrote:
> One thing to note, I've found that th
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
su
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
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 w
$(document).ready(
funtion(){
return false;
$("#send").click(
function(){
$.post("lib/ajax/requests.php",
{
action: "postrecommendmypros",
45 matches
Mail list logo