I have a table and each row has the id of the data element. I put a
checkbox in the the first cell of every row with an id of cb+OrderId.
I found my answer to click on a row and check the checkbox but I was
just wondering if there was a better way. Is there a way to use this
to get the checkbox?
I changed Click for Toggle and it worked!
Thank you very much, guys.
Try this:
1) add var $j = jQuery.noConflict(); just after you load the main
jquery library
2) replace all the instances of $ to $j in your script and in all the
plugins that you use
That's it
On Jun 28, 8:35 am, Rey Bango <[EMAIL PROTECTED]> wrote:
> Hi Reinder,
>
> Remove the true param from
I did it 100s of times and it works perfectly. Try this:
1) add var $j = jQuery.noConflict(); just after you load the main jquery
library
2) replace all the instances of $ to $j in your script and in all plugins
that you use
That's it:clap:
--
View this message in context:
http://www.nabble
> Zebra striping absolutely should be done server-side there is
> no excuse outside of not having access to the code.
If you sort on the client, you must also be able to zebra stripe on the
client.
But you're right, it's best to do the *initial* zebra striping on the
server.
-Mike
Do these elements have a class or are they random elements that are 143px
wide?
Glen
On Fri, Jun 27, 2008 at 8:10 AM, [EMAIL PROTECTED] <
[EMAIL PROTECTED]> wrote:
>
> Greetings,
> I am new to JQuery and looking into this. We are trying to find a way
> to create a client side javascript that loo
Also you can do this:
$(document).ready(function() {
$("#box1").toggle(function() {
$(".ul-list").show();
},function() {
$(".ul-list").hide()
});
});
hide/show do what you need.
Glen
On Fri, Jun 27, 2008 at 4:51 PM, Glen Lipka <[EMAIL PROTECTE
try this hover
$(document).ready(function() {
$("#box1").bind('mouseover', function() {
$(".ul-list").css({display: 'block'});
});
$("#box1").bind('mouseout', function() {
$(".ul-list").css({display: 'none'});
});
});
click toggle
Try using Toggle, rather than Click. That should work.
Glen
On Fri, Jun 27, 2008 at 3:28 PM, Cristian <[EMAIL PROTECTED]> wrote:
>
> HI,
> I'm using the code below to create a hover effect. When the user puts
> the mouse over a div "box1" a list of items appear, and when it goes
> out, the list
MorningZ schrieb:
> Right from the changelog (http://jquery.bassistance.de/autocomplete/
> changelog.txt):
>
> "* Updated package to jQuery 1.2.5, removing dimensions"
>
> older versions (not exactly sure how old though) didn't have the
> dimensions built in
Thanks for your answer. :-)
So I hop
Hi Reinder,
Remove the true param from noConflict and that should resolve your issue.
Rey...
Reinder Brouwer wrote:
I want to use JQuery beside moootools with 2 plugins: slimbox &
tooltips.
JQuerys validation is cooler to me! :)
My problem is when I use slimbox by calling it with $ mootools i
Thanks everyone for your input. My other concern is that if i
completely modularize code to seperate includes, then i will lose the
one-time download / precaching benefit of a single js download.
Perhaps the best approach is to make sure that unnecessary event
handlers arent attached using someth
Zebra striping absolutely should be done server-side there is no
excuse outside of not having access to the code.
On Jun 24, 3:39 pm, Kyle <[EMAIL PROTECTED]> wrote:
> I wish pagination were an option, as that would without a doubt be my
> first choice. However, it's a list of all applications fr
HI,
I'm using the code below to create a hover effect. When the user puts
the mouse over a div "box1" a list of items appear, and when it goes
out, the list disappears.
I thought it would be interesting to change the hover event for a
click event. So that when the user clicked the box for the firs
I seem to be at a loss
I'm trying to run this code right here:
$("#image img").fadeTo(500,0,function() {
$("#image img").attr({src : imgSrcNext});
}).fadeTo(500, 1);
but in firefox 3, I see the fade away and the fade back, and THEN
firefox decides to switch the img source to the new ima
Right from the changelog (http://jquery.bassistance.de/autocomplete/
changelog.txt):
"* Updated package to jQuery 1.2.5, removing dimensions"
older versions (not exactly sure how old though) didn't have the
dimensions built in
Check out this link.
http://docs.jquery.com/FAQ#Why_do_my_events_stop_working_after_an_Ajax_request.3F
--
Ariel Flesler
http://flesler.blogspot.com/
On 27 jun, 15:12, noon <[EMAIL PROTECTED]> wrote:
> I have the following code which is clearing the contents of an input
> box and modifying its cs
same I load jquery first then mce, from a quick google that error seems to
be caused in ff when using mce on ports other 80
have you tried the plugin for mce?
2008/6/27 Mickster <[EMAIL PROTECTED]>:
>
> Hi Salvatore,
>
> I'm afraid I don't have a solution for you, but I just wanted to
> assure y
Hi Salvatore,
I'm afraid I don't have a solution for you, but I just wanted to
assure you that jQuery and TinyMCE do work together - I use them
together without errors.
Not sure if it matters (think I saw a comment about it somewhere
though), but in which sequence do you load the scripts? I load
Hello,
I'm having the similar problem.
When I try to use the hoverIntent within the livequery, the
hoverintent triggers immediatly even when I didn't went over the
element.
j("a.jTip")
.livequery(function(){
j(this)
.hoverIntent({
sensitivity: 3,
Trying to pull in flickr feed and replace the _m with _b in the url to
print large images.
$.getJSON("http://api.flickr.com/services/feeds/groups_pool.gne?
[EMAIL PROTECTED]&lang=en-us&size=b&format=json&jsoncallback=?",
function(data){
I'm having problems with the DDNAV in IE 6.
First off, I think it's causing my headers width to display smaller.
Second, the DDNAV extends the entire width of the browser.
This is the first time I have used this style DD menu so any help is
appreciated.
Thanks
site: http://www.goldfishnw.biz/T
Hi,
I use the autocomplete script from
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
There is something I could not figure out: Is it possible to show an
busy indicator while the results are fetched from a remote server?
thanks,
fs
smime.p7s
Description: S/MIME Cryptograph
Ok, cool. I see what you're saying.
Is there any way around this? The issue I'm facing is that we have a common
header and common footer, the table begins inside the header and ends in the
footer, so it's hard to figure out a nice solution other than having a form
on every page.
Thanks,
Josh
On
Many thanks fort the extra links. I shall have a good old play with
this over the weekend. Great Plugin btw.
On Jun 27, 12:23 pm, Mike Alsup <[EMAIL PROTECTED]> wrote:
> Here are some links:
>
> http://www.malsup.com/jquery/cycle/pager2.htmlhttp://www.malsup.com/jquery/cycle/pager3.html
>
> On Ju
I am VERY new to this as in started digging yesterday.
I have a page, "TestPage.aspx" that includes the following javascript
in the section.
///
@import "css/thickbox.css";
$(document).ready(function() {
$('#form1 #AdminGroups1 > #
Hey, all. I'm sending an AJAX request, and in addition to executing
functions on Success or failure, I want to get the Status of the
XMLHttpRequest object (404, 401, etc). It's passed into the functions,
but I can't figure out how to retrieve it.
$.ajax({
type: "GET",
url: "member
I have the following code which is clearing the contents of an input
box and modifying its css.
$('.untouched')
.focus(function(){
$(this).val('');
$(this).removeClass('untouched');
$('.add-msg').css('display','inline');
})
.
Hi,
I have this problem. check the code below
when first checkbox unchecked will disable 2nd checkbox and textbox;
when 2nd checkbox unchecked will disable textbox.
now 2nd checkbox works just fine, but I have problem to make 1st one
work.
I use
$(this).parent().nextAll().attr('dis
Greetings,
I am new to JQuery and looking into this. We are trying to find a way
to create a client side javascript that looks for a pattern on the
page and changes the size of a div tag.
For example the specific div tag is generated by Sharepoint at
143pixles. We want to have JQuery alter any of
I'm using superfish 1.4.1 and jquery 1.2.6 here:
http://www.goldfishnw.biz/TualatinFoodPantry/
CSS: http://www.goldfishnw.biz/TualatinFoodPantry/MainNav.css
CSS: http://www.goldfishnw.biz/TualatinFoodPantry/superfish.css
This is my first time using superfish and I got it to work in FF and
IE7,
Hi,
I use the autocomplete script from
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
There is something I could not figure out: Is it possible to show an
busy indicator while the results are fetched from a remote server?
thanks,
fs
http://plugins.jquery.com/project/Values
This plugin adds a values() method that searches descendants of the
current selection for those with a "name" attribute and gathers their
values into a hash object for you. If you pass a hash object or DOM
element into the method, it will reverse the proc
Hi All,
I'm working on a calendar for a site in the works at this link:
http://208.79.237.221/events/
My goal is that when a user clicks on a link within the calendar the
details of that event pop up in a thickboxs iframe.
I'm adding the class="thickbox" and query string to all the links in
the
@Dean Landolt: That is a good point, I will take that into
consideration.
On Jun 26, 3:40 pm, "Dean Landolt" <[EMAIL PROTECTED]> wrote:
> > Hi again,
>
> > you replied directly to me with this:
>
> > Awesome! Now 1 more question.
>
> >> How can I have it not hover the last row too?
>
> Just to
Hello everyone,
I have a very weird problem that I am seeing with JQuery.
If I have div which contains
I'm trying to have a few text fields inside of a lightbox like: Name
and Subdomain with an image(submit button) to POST those values back
to the server. When they aren't in the lightbox, it works fine but
when I pull it into the lightbox, the image isn't able to POST back to
the server -- I assume
Since JQuery auto sends "X_REQUESTED_WITH" i assumed it would probably
work with most everything.. but it doesnt seem to be working with
ie6... I tried changing the head name to a few different things but
nothing seemed to work.. does anyone have any idea why this doesnt
work or have any other ide
Hi,
still using the autocomplete script from
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
Currently the script expects by default that the response contains the
data as "visible text|other data" with one item per line (at least this
is what I figured out from reading the sourc
Hi,
still using the autocomplete script from
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/
Currently the script expects by default that the response contains the
data as "visible text|other data" with one item per line (at least this
is what I figured out from reading the sour
Jorn, great work on autocomplete.
One thing I'd like to see is the ability to pull the data from a
function (instead of a static array or url). The function could
return the array instead, however it wanted to go get the data.
Imagine:
autocomplete: function(urlOrDataOrFunction, options)
Arun, ask not what jQuery can do for you, ask what you can do for... Well,
something like that.
Did you look at what makeArray() gave you back? Do a console.log() if you
didn't try it. You'll see that it's not what you were expecting -
makeArray() isn't meant for this purpose.
Don't rely on a li
Brice,
i have a feature request: the possibilty to use proportional width instead
of fixed width, so we can tell it to take like 90% of the available width
space. Useful in some cases for complex UI.
sorry if it is possible already, didn't manage to so far.
thanks !!!
On Tue, Jun 24, 2008 at 1:
Very neat plugin! I might have some use for this in a new form. Nice
work Matt and thanks to Rey for sharing!
On Jun 27, 7:08 am, Rey Bango <[EMAIL PROTECTED]> wrote:
> Matt Berseth published his first jQuery plugin called glowButtons:
>
> http://mattberseth.com/blog/2008/06/glowbuttons_writing
Hi all,
i'm using jquery library in my projects, and it works fine.
in my last app, i've to implement a page taht acts as an html editor, so i used
the tiny mce library: i have already used tinymce, but this is the first time
with jquery, and they seem not to work together.
first of all, at start
In that case $(this).prev(".seriesOverlay") should do.
- Richard
On Fri, Jun 27, 2008 at 12:27 PM, hubbs <[EMAIL PROTECTED]> wrote:
>
> This is almost what I need. But .seriesOverlay is not a child, but
> the previous div in the DOM, so it is right above it.
>
> Maybe I could use $(".seriesOver
This is almost what I need. But .seriesOverlay is not a child, but
the previous div in the DOM, so it is right above it.
Maybe I could use $(".seriesOverlay + .seriesItem")?
On Jun 26, 2:47 am, "Richard D. Worth" <[EMAIL PROTECTED]> wrote:
> If your .seriesOverlay is a child of your .seriesItem
Thank you! This will work perfectly.
Yes, I need the link to be followed, because it loads content into a
div using ajax, so, removing return false; will be what i need. Any
thank you for commenting the code! That really helps for beginners!
On Jun 26, 1:15 am, sheshnjak <[EMAIL PROTECTED]>
Yeah, only the website uses jQuery, the upcoming version much more
than now.
--Klaus
On Jun 27, 4:24 pm, RobG <[EMAIL PROTECTED]> wrote:
> On Jun 23, 6:41 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote:
>
> > All,
>
> > I'm happy to announce that jQuery powered service Plazes has been
> > aquired ny
Hi, i've set up a jcarousel here:
http://www.q2arabia.com/index.php/events
The page doesn't seem to be working in IE6, but it does work in IE7 /
Firefox / Safari / Opera.
Two things are not working:
1. The scrolling doesn't seem to be working
2. The css for hiding the overflow doesn't seem to
I want to use JQuery beside moootools with 2 plugins: slimbox &
tooltips.
JQuerys validation is cooler to me! :)
My problem is when I use slimbox by calling it with $ mootools is
disabled, so I found out the noconflict method. My problem is:
It seems doesnt work?
http://tableless.vliegervaringen.c
Hi
I've been playing with jQuery selectors and i found something
strange:
I have a table like this:
Now, when i try to use jQuery to select all TD's that do not have a
title attribute:
td:not([title])
this selects the last two td's, so the one with title='' is included.
if i try td[t
Hi,
http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ states
that the required version of jquery is 1.2.6. Is there a list why 1.2.6
is necessary? I write a trac plugin and trac 0.11 only ships 1.2.3 but I
don't like to/can't insert my own version of jQuery.
fs
You are right !
Thank you very much for your help, Jörn :)
On 27 juin, 14:56, "Jörn Zaefferer" <[EMAIL PROTECTED]>
wrote:
> Try to put the script you load into the ajaxSubmit-success-callback,
> instead of loading it together with the HTML. That should be much more
> reliable.
>
> Jörn
>
> On Fri
Nevermind, problems solved:
$_SERVER['HTTP_X_REQUESTED_WITH']
On Jun 26, 9:49 pm, DXCJames <[EMAIL PROTECTED]> wrote:
> Is there anyway to tell the difference between a JQuery call and a
> Normal? Preferably in PHP?
>
> I dont know if that is a detailed enough question but i dont really
> know h
I send an answer but I don't see it.
So, you were right.
Thank you very much for your help, Jörn :)
On 27 juin, 14:56, "Jörn Zaefferer" <[EMAIL PROTECTED]>
wrote:
> Try to put the script you load into the ajaxSubmit-success-callback,
> instead of loading it together with the HTML. That should be
Works for me on XP IE7/IE8 - except that on IE8 the pictures on the right
overlay the menu-bars...
2008/6/26 Andy Matthews <[EMAIL PROTECTED]>:
>
> Anyone have any ideas about this oddity?
>
> On Jun 25, 7:23 pm, Andy Matthews <[EMAIL PROTECTED]> wrote:
> > My client has discovered an interesting
Hello Below is the code snippet i am using in Xml parsing against XSD
Parsing is showing succesfull even if i give TransactionRef more than
30 character in xml.
Any suggestion what should be wrong.What will be the root cause
Transaction reference for a given transaction.
Note:
I should really try this out, I had issues with IE not applying the PNG fix
on images that were hidden so I had to apply the fix to those elements every
time I created an effect or any kind of animation.
Many thanks
On Tue, Jun 24, 2008 at 7:19 PM, Yereth <[EMAIL PROTECTED]> wrote:
>
> After usi
@Steen Thanks that was perfect! Worked great!
@Gordon I had tried that before and for some reason it didn't work
@Donb Thanks for your help! it was very similar to Steen's
I have this working now. However in IE nothing happens, it starts to
slide but stops about 25% of the way up then nothing hap
I am using ASP.NET MVC ...
So the autocomplete list is defined on the server and accessed on HTML
using something like:
<%= MyModel.ViewData.TagList.ToString %>
Can I use something like this to define the validation?
Thanks,
Miguel
On Jun 27, 1:59 pm, "Jörn Zaefferer" <[EMAIL PROTECTED]>
wrote
On Jun 23, 6:41 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote:
> All,
>
> I'm happy to announce that jQuery powered service Plazes has been
> aquired ny Nokia. W0t!!!1!
Which part uses jQuery? The linked article says that the iPhone
version is an SDK application.
--
Rob
From Encosia.com:
Use jQuery and ASP.NET AJAX to build a client side Repeater
http://encosia.com/2008/06/26/use-jquery-and-aspnet-ajax-to-build-a-client-side-repeater/
Rey...
Matt Berseth published his first jQuery plugin called glowButtons:
http://mattberseth.com/blog/2008/06/glowbuttons_writing_my_first_j.html
Rey
Looks like your markup is invalid: The form doesn't surround the
table, instead its closed instantly. Its weird that the validation
works at least in parts.
This is the rendered html:
<-- closed!
...
Jörn
On Thu, Jun 26, 2008 at 6:39 PM, Josh Joy <[EMAIL PROTECTED]> wrote:
> Sorry, try here
Depending on where your autocomplete data is coming from, you could
use a custom method (local data) or the remote method (remote data).
http://docs.jquery.com/Plugins/Validation/Validator/addMethod
http://docs.jquery.com/Plugins/Validation/Methods/remote
Jörn
On Fri, Jun 27, 2008 at 2:42 AM, s
To avoid putting it all into one unreadable line.
Jörn
On Fri, Jun 27, 2008 at 3:00 AM, Alexsandro_xpt <[EMAIL PROTECTED]> wrote:
>
> Jorn, Why you always declare a new JS var?
>
>
> --
> www.alexsandro.com.br
>
>
>
> On 22 jun, 16:14, "Jörn Zaefferer" <[EMAIL PROTECTED]>
> wrote:
>> Just use jQ
Try to put the script you load into the ajaxSubmit-success-callback,
instead of loading it together with the HTML. That should be much more
reliable.
Jörn
On Fri, Jun 27, 2008 at 2:43 PM, Fred Boucher <[EMAIL PROTECTED]> wrote:
>
> I have a problem using two plugins with Jquery :
> http://bassis
I have a problem using two plugins with Jquery :
http://bassistance.de/jquery-plugins/jquery-plugin-validation/
and
http://www.malsup.com/jquery/form/#code-samples
I have a form where I need to check if fields are wrong or not (with
jquery Plugin Validation).
When the form is submitted and all fi
I've looked around for a good information source on converting from
Dojo to jQuery. Specifically, something that might details things to
look for when converting, gotchas, things to be careful about,
analogous packages (e.g., if you are using the subpackage X in dojo,
you should think about using
this is printed in php onto the page. The backslashes are to escape
the php so it doesn't end the string.
On Jun 27, 9:44 am, andrea varnier <[EMAIL PROTECTED]> wrote:
> On 27 Giu, 02:41, Pegpro <[EMAIL PROTECTED]> wrote:
>
> > IE sucks. What is wrong here?
>
> one question: why are these quotes
Hi Andiih, I had one more thought. I don't usually setTemplateURL abd
ibstead use setTemplateElement and have the template locally in a hidden
text area. I was wondering if it might be the difference because of the
network communication that occurs in your case. Might be worth a try to see
if th
Hey Klaus,
Sorry I got to this thread quite late, but anyway, congratulations on
the huge news! I hope the acquisition results in lots of great new
opportunities for you (and lots of money, too. ;) ).
Cheers,
--Karl
Karl Swedberg
www.englishrules.com
www.learningjquery.com
The idea of reviewing plugins and putting the good ones on a list is
even older then the plugin repository. And just reviewing for the sake
of reviewing isn't really practical.
In the long term I hope to see more and more components finding their
way into jQuery UI, or subprojects of jQuery UI (l
Hi,
I have the code below on my page. The bindBehaviours function is used
as the page is loaded via an AJAX call in a jQuery UI Tab. I want the
autocomplete to check the value is in the list and to add the
engineerID to a hidden field based on the EngineerName selected in the
autocomplete box.
Hy Steen
I totally agree with you.
And I did not know the CSS display:none will break the submit. Good to
know! THX.
cheers
tl
On Jun 27, 11:35 am, Steen Nielsen <[EMAIL PROTECTED]> wrote:
> A lot of browsers support usage without JS and CSS. Especially mobile
> devices or screenreaders have v
The problem with making that the default behavior is that you will
need to strip out the spaces on the server.
You could use addMethod() to create a new method which just strips out
the spaces and then calls the existing credit card validation method.
On Jun 27, 3:52 am, rupurt <[EMAIL PROTECTED
var $this = jQuery(this), link = $this.attr('href');
or use a closure:
(function($) {
var $this = $(this), link = $this.attr('href');
})(jQuery);
On Jun 26, 6:11 pm, Pegpro <[EMAIL PROTECTED]> wrote:
> I am using this line:
> var $this = $(this), link = $this.attr('href');
>
> However I h
No problem. The interesting thing is that the more you comply with
the RFC, the more likely you are to allow someone to accidentally
enter an incorrect email address. The webforms plugin addresses this
by following the spec as closely as possible and just ensuring that
the form of the address is
> Is it possible to use named links/ids to show a particular div when
> using the pager function of the Cycle Plugin?
You can choose which elements become slides using the 'slideExpr'
option:
http://www.malsup.com/jquery/cycle/slideExpr.html
> Also, I am unable to get several of the effects to
Here are some links:
http://www.malsup.com/jquery/cycle/pager2.html
http://www.malsup.com/jquery/cycle/pager3.html
On Jun 27, 4:15 am, greencode <[EMAIL PROTECTED]> wrote:
> Does anyone know how I can change the links to text links rather than
> continuous numbers? I'm new to all of this and can
hi mates,
how do i implement the possibility to have a callback function in my plugin?
Via eval()?
jQuery.fn.setScrollableArea = function(modifier, callback){
jQuery('body').css({
overflow: 'hidden'
});
return this.each(function(){
var offset = jQuery(this).offset();
Well, you could do this in two ways, one is to actually make it into a
form and the do something when the submit have been activated.
The other way includes what you probably are looking for.
You want to read the key that have been pressed. For this you need to
register the keycode on the key dow
Machine A
FF3 xml to json 1380, Template Processing 619
IE6 xml to json 1782, Template Processing 22593
Machine B
IE7 xml to json 765, Template Processing 8579
FF2 xml to json 2094, Template Processing 1492
FF3 Beta xml to json 1151, Template Processing 1054
Machine C
IE 7 Xml to json 1187, Temp
Another thing you can do instead of giving every link a class, you can
give the container a class and select the links in that container.
example html:
test1
test2
test3
test4
use this selector: jQuery('.menu a')
That way you will get every link inside the div with the c
Is it possible to add support for spaces in the credit card validator?
That was exactly what I was looking for. Thanks for the quick response
and easy to follow information.
On Jun 20, 1:52 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote:
> Color animations are not in core jQuery but are in jQuery UI Effects. If
> color animations is all you want (from UI Effects),
Hi have a form as follows as follows
Team A
Team B
Initially when the page is loaded, both the divs are hidden. I want
the user to select one or more of the options from the select
'meetevents', and depending on which one he selects the div with the
appropriate in
Arrrgggh. You know when you read the same lines of code again and
again and can't see the obviousyou are of course correct, I'm
timing both. I will give your code a try.
On Jun 27, 12:03 am, "chris thatcher" <[EMAIL PROTECTED]>
wrote:
> I think you are measuring the combined time. Try this:
> >> How can I have it not hover the last row too?
>
> Just to expand a little on sheshnjak's point above, if it does sound like
> it's a header and footer you're trying to differentiate. If that's the case,
> may I suggest the more semantic and tags? They might come in
> handy.
@Dean Landolt:
This tutorial code works fine in Safari 3.1.1 and Opera 9.5.0 but is
failing in FireFox 3.0. These are all Mac OS X versions. In the case
of FF3 when you click the link jquery.com is loaded. The code which
adds the test class to the a element does work in FF3.
$(function(){
Is it possible to use named links/ids to show a particular div when
using the pager function of the Cycle Plugin?
Also, I am unable to get several of the effects to work, specifically
any of the scroll effects (scrollLeft), turnLeft works. Currently
testing using the code below.
$(function() {
Is there anyway to tell the difference between a JQuery call and a
Normal? Preferably in PHP?
I dont know if that is a detailed enough question but i dont really
know how else to ask and I wasnt sure how to search for it in the
group either so i just started a new topic.. Thanks!!
James
A lot of browsers support usage without JS and CSS. Especially mobile
devices or screenreaders have very bad JavaScript support, and
screenreaders "read" the content of the page as it's shown without
CSS.
Even though we can argue for a long time whether or not it's a good
idea to only support cli
Does anyone know how I can change the links to text links rather than
continuous numbers? I'm new to all of this and can't seem to find it
anywhere?
http://www.malsup.com/jquery/cycle/int2.html
Hi Guys,
I got a issue again with IE7. Apparently if my DIV contains an image and if
I use slideToggle() on it, the sliding works but after it slidesDown() the
image will just disappear.
# Donation
images/icons/paypal.png
-
Lester Chan's Website
- http://lesterchan.net
--
View th
It actually does have a performance impact, even though we can't
always "see it" on modern processors and javascript engines for
desktop browsers. If you consider users with handheld devices that
have functionality similar to PCs (and even take media="screen"
instead of media="handheld" for stylin
Hi,
I try to inject some Html in a page using ajax():
//
(function($) {
/*
* load the tab header
* id: dom id to append content
* currentTab: index of 'li' to mark as current
*
*/
$.fn.loadTa
I've applet on my page and I would like to chain ready() (or do it
otherwise) to wait for applet to be ready. Now page is considered
ready when applet starts to load classes. And I end up having errors
when my ready() code points to applet methods.
I tried to google for solutions but I couldn't f
Hello all
I am new at JQuery. But, I have to say it is so kool to use. I try to
add the JQuery validate to my C# Page.
code as following:
I copy most of code from
http://docs.jquery.com/Plugins/Validation/Methods/email#toptions
http://www.w3.org/1999/xhtml";>
Untitled Page
1 - 100 of 108 matches
Mail list logo