I am attempting to build a page with multiple carousels, that by
default, only one displays. When you click on an element on the page
(a staff members name), you see their own personal carousel, which
replaces the default.
When I attempt to do this, I receive the following error message:
"jCaro
Hi Jorn,
Yup - here's a test page:
http://www.janepatrick.co.uk/admin/test/login.php
Submitting the form manually (as you said) just bypasses any
validation, which is NOT what I want, as I still need the email
address validated before it's sent to the back end to email the
password...
U
Whenever you create new selects you will need to bind the click event
to the new selects.
On Jan 31, 11:51 am, RyanMC <[EMAIL PROTECTED]> wrote:
> $("select").change(function(){
> alert("Selected: " + this.value);
>
> });
>
> Is there any reason why this wouldn't be working on all the selects
Thanks for the example Marc. To answer the OP's question, I added an
example using SimpleModal:
http://ericmmartin.com/code/datepicker/
-Eric
On Jan 30, 12:43 pm, 1Marc <[EMAIL PROTECTED]> wrote:
> I've had a lot of questions about modal windows and UI Datepicker, so
> I created a demo example
jQuery does not have a built-in selector to compare the values of
attributes, but it allows you to write custom filters (analogous to
plugins). I once found documentation on this but can't anymore. You
sort of have to read the source to learn to do this.
You just extend the $.expr[':'] object with
On Jan 30, 2008, at 9:13 PM, Karl Swedberg wrote:
If you can assign class="port" to each of those elements, you could
do this:
$('.port').each(function(index) {
$(this).click(function() {bigchart(index)});
}
if you can't assign a class, then change $('.port') to $
('[id^=port]') ,
Yes, of course. As you demonstrated, if you want to select by id as
well then you put the id first. So conceivably you could write
something like:
p#anId.aClass.anotherClass.stillAnotherClass
And it would only match elements like this:
Karl Rudd
On Jan 31, 2008 1:23 PM, Erik Beeson <
>
> You're looking for:.selector1.selector2.selector3
>
But, that's only if selector1, selector2, and selector3 are all classes,
yes?
--Erik
Generally, just run them together with no space.
A div tag with ID foo and class bar: div#foo.bar
Any tag with classes class1 and class2: .class1.class2
etc
Hope it helps.
--Erik
On 1/30/08, Kynn Jones <[EMAIL PROTECTED]> wrote:
>
>
> Hi. The docs describe selectors of the form
>
> select
You're looking for:
.selector1.selector2.selector3
Notice there are no spaces between the selectors.
Karl Rudd
On Jan 31, 2008 1:12 PM, Kynn Jones <[EMAIL PROTECTED]> wrote:
>
> Hi. The docs describe selectors of the form
>
> selector1, selector2, selector3
>
> as "matching the combined
The only thing you need to do is to capture the number on a scope.
Like this:
function bind( num ){
$('#port'+num).click(function(){ bigchart(num); });
};
for( var i=0; i<5; i++ )
bind( i );
And voila, you can also do:
function getHandler( num ){
return function(){ bigchart(num); });
On Jan 30, 2008, at 3:10 PM, timothytoe wrote:
I think I submitted a half-done version of this message by accident a
few minutes ago. Sorry.
This works:
$("#port0").click(function() {bigchart(0)});
$("#port1").click(function() {bigchart(1)});
$("#port2").click(function() {bigchart(2)});
$
Hi. The docs describe selectors of the form
selector1, selector2, selector3
as "matching the combined results of all the specified selectors", by
which they mean the set union of all the individual selections. In
other words, the ',' here behaves like a logical OR.
Is there a succinct way t
I'm yet to be an expert in jQuery :) But I would solve that like this:
$(".port").click(function() {bigchart($(this).attr('port-id') )});
now in your html code, I guess its like:
change to
Feijó
timothytoe escreveu:
I think I submitted a half-done version of this message by ac
On 31/01/2008, Olivier Percebois-Garve <[EMAIL PROTECTED]> wrote:
>
> Hi Joel,
> I'll try to give you some feedback.
Hi Olivier,
Thanks very much for the feedback, it really is very useful.
> First some remarks and questions and then a bug report :
> You may change some filenames. For instan
There is a clever way -- in John Resig's book he talks about it -- it
involves executing the anonymous function right after declaring it, when in
a for loop:
function() { do whatever; }();
But, I tried some experiments and I couldn't get it to work right.
-- Josh
I ended up doing someth
I ended up doing something similar to what you suggest, but I really
was hoping to elicit some clever way to get the value of the variable
at the time of the assignment, rather than the "5" that I get because
the closure is maintaining the context.
Is there a way to set these event handlers up in
I agree, [EMAIL PROTECTED] isn't likely to be used anytime soon in a real-
world situation.
I've hacked the plugin on line 865 from:
return this.optional(element) || /^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?
\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\
$%&'\*\+\-\/=\?\^_`{\|}~
Hi!
Im working in a project that needs to parse like 10 external XML or
RSS resources of events. Some of this XML resources uses this format:
http://web.resource.org/rss/1.0/modules/event/
Other resources are not using this standard tags, they use tags in
different languages like:
anot
Thanks. Can any of these be customized to be a non-modal, no thumbs
gallery? I need the first image of the galleries to be visible on page
load, and prev/next buttons to load images as needed.
-Ange
On Jan 30, 6:52 pm, "Benjamin Sterling"
<[EMAIL PROTECTED]> wrote:
> Ange,
> Have a look at one of
You have to escape the first set of double quotes -- leave the single
quotes there.
var tabTest = "billy";
$(".orderInfo[id='" + tabTest + "'"];
On Jan 30, 7:24 am, studiobl <[EMAIL PROTECTED]> wrote:
> I'm having trouble with a jQuery selector that contains a variable.
> I'm trying to target an
Any suggestions?
On 27 jan, 18:45, Arkilus <[EMAIL PROTECTED]> wrote:
> While building my application with jQuery I found out this really
> weird internet explorer bug:
> Applying SlideDown to elements that are relative positioned or that
> have relative positioned parents, some elements just dis
Instead of binding five times, you can do it dynamically:
$("[id^=port]").click(function() {
bigchart( this.id.charAt(this.id.length-1) );
});
Something close to that should do it. Although if you end up with 10 or
more clickables you'll have to change your naming scheme a bit.
-- Jo
Yeah, its all div and within a particular parent!! I'm alreading having
that kind of care, adding specificity for all my selectors.
It should improve performance, I bet :)
Thanks Joel
Joel Birch escreveu:
On 31/01/2008, Feijó <[EMAIL PROTECTED]> wrote:
Its possible to simple use like
i was wondering if anyone has a quick and easy way to hide an arrow if
you are at the beginning or end of the scrollable content.
for instance
i would want the top arrow to not be visible at first, because there
is no content above it.
and when i reach the end of the content, i would like the do
Hi Joel,
I'll try to give you some feedback.
First some remarks and questions and then a bug report :
You may change some filenames. For instance helperPlugin.js to
hoverIntent.js or vertical.css to superfish-vertical.css
I think it would be nice to put an exemple menu at the top of the
sup
Ange,
Have a look at one of these plugins:
http://benjaminsterling.com/category/jquery-plugin/
On 1/30/08, Ange <[EMAIL PROTECTED]> wrote:
>
>
> I'm looking for a jQuery slideshow plugin, and I can't seem to fond
> one that does all I need. Cycle and jCarousel come close. But my
> problem is I h
What version of the plugin?
On Jan 30, 2008 1:26 PM, ZAP <[EMAIL PROTECTED]> wrote:
>
> For some reason, Cycle is not randomizing the order of my blurbs.
>
>
> $(document).ready(function(){$('#blurbs').cycle({fx:'turnDown',random:
> 1,timeout:1});});
>
>
> Anyone know why this might be?
>
Hi there,
It looks like you just need to add a width to your .nav rule. try
width:183px; to begin with as this worked for me via Firebug.
Joel Birch.
Sudrien schrieb:
Pardon the mixing of comment formats.
// must be non-blank - values are digits
...
// "Port not found" in previous list - values are strings
...
// "Port not found" in previous list - value is a string
// "Port not found" AND "Country not found" - how do I require both?
help.
On Jan 25, 10:37 am, Josh V <[EMAIL PROTECTED]> wrote:
> hi.
>
> On Dec 19 2007, 3:02 pm, Josh V <[EMAIL PROTECTED]> wrote:
>
> > help.
>
> > On Nov 30, 4:55 pm, Josh V <[EMAIL PROTECTED]> wrote:
>
> > > anybody?
>
> > > On Nov 29, 5:03 pm, Josh V <[EMAIL PROTECTED]> wrote:
>
> > > > hi. i
Please, help! I can't understand.
I'm using plugin "interface.js" - sortables.
I have 2 dropables fields and some sortables elements.
It's works in FireFox and Opera, but in IE, once I grag one element,
next time it's can not be dragged:
http://test.mkechinov.ru/rc/rc.htm - dont worry about sy
http://groups.google.com/group/jquery-en/browse_thread/thread/7e44db31deae3703/8909400f98de18c8#8909400f98de18c8
Not much activity on the site yet (its new), but its nice to see that
they appreciate and use a great javascript library
you can try $('#' + tabtext) since the id is unic you don't need the
class.
On Jan 30, 7:24 am, studiobl <[EMAIL PROTECTED]> wrote:
> I'm having trouble with a jQuery selector that contains a variable.
> I'm trying to target an element that has a class of "orderInfo" and an
> id of "billy"
>
> So
I am trying to have 3 different vertical lists that have flyouts for
navigation.
Here is the site (I know it is a mess right now):
http://visitpalmbeach-com.alivedns.com/default.aspx
Problem is the second and third menus get displayed horizontally. The
flyouts works but the display is borked.
$("select").change(function(){
alert("Selected: " + this.value);
});
Is there any reason why this wouldn't be working on all the selects on
my page.
I create the selects dynamically, but this is up in the $
(document).ready(function() { block of my code.
Hi,
as Karl said...and you could also make things a little bit shorter by using
multiple selector:
var tabText = 'billy';
$('.orderInfo#'+tabText];
--
Bohdan
--
View this message in context:
http://www.nabble.com/Selector-Containing-Variable-tp15188162s27240p15194100.html
Sent from the jQuer
My issue is that remote requests, especially those involving an
external server, can take a second or two. It's nice to give the
user an indication that something is happening, which is why a spinner
isn't 'useless'. It would be great if someone could give me a push in
the right direction.
Als
Is there a way to change that? Or, what part of the email regex could
I modify? I would think that most people would agree with me that
@localhost wouldn't really be a valid email for production use. If I
am wrong, then tell me, however, could you point me in the right
direction to not allow a val
I had some trouble getting that history plugin to corporate with
ui.tabs. I'll take another stab at it, maybe there are some updated
documentation in that area.
I had not run into that "Loading..." issue when I was running thru it,
but I always waited until the transition finish. Ah the beauty of
Also, you could dim the first view and thumbnail on the print and web
pages to show that they're currently displayed.
A beautiful site, though! I was actually planning on doing the same
drop-down effect on my site redesign (which should be done sometime in
'09). Stole my thunder!
On Jan 30, 3:
Thanks for the answer!
I think you should put your validate / delegate / ajaxQueue in the
same file. In my case, and the majority, only use these two plugins to
run validate, and for this reason we have to include 3 files.
Make a package, all built.
Bye!
On 30 jan, 15:48, Jörn Zaefferer <[EMA
I'm looking for a jQuery slideshow plugin, and I can't seem to fond
one that does all I need. Cycle and jCarousel come close. But my
problem is I have multiple galleries on one page, and they all have
large images. So, since they load all the images in every gallery and
then hide them, the page to
Ext has its own accordion panel
On Jan 31, 12:01 am, "Stéphane Walther" <[EMAIL PROTECTED]> wrote:
> Hi there,
>
> I tried to nest an ExtJS TreePanel into an Accordion menu (provided by
> jQueryUI) like this :
> -Header1
> -Header2
> MyTree
> -Header3
>
> When I click on Header2, the TreePane
I think I submitted a half-done version of this message by accident a
few minutes ago. Sorry.
This works:
$("#port0").click(function() {bigchart(0)});
$("#port1").click(function() {bigchart(1)});
$("#port2").click(function() {bigchart(2)});
$("#port3").click(function() {bigchart(3)});
$
I am trying to make the on-click event of any element optional depending on
what the user decides. The only functions I see out there append a function
to the on-click event. I have played with the browser bubbling / catching
stuff too. That worked in Firefox but not in IE 7. It seems I can't acces
Hi all,
I just built out a search page using the Jquery Interface plug-in.
Specifically the slider function.
You can view it on this page:
http://www.totalbeauty.com/reviews/product_finder
Unfortunately, the prices do not update as you slide the sliders. They
update when you stop and unclick. I
This code works...
$("#port0").click(function() {bigchart(0)});
$("#port1").click(function() {bigchart(1)});
$("#port2").click(function() {bigchart(2)});
$("#port3").click(function() {bigchart(3)});
$("#port4").click(function() {bigchart(4)});
Naturally, I want to do this:
var por
For some reason, Cycle is not randomizing the order of my blurbs.
$(document).ready(function(){$('#blurbs').cycle({fx:'turnDown',random:
1,timeout:1});});
Anyone know why this might be?
Does it work with an imagemap?
Blaise
Look at the "Ajax Tabs" section of the Tabs demo page (http://
stilbuero.de/jquery/tabs_3/)
On Jan 30, 9:14 am, carvingcode <[EMAIL PROTECTED]> wrote:
> I have a tab that I don't want the content (generated from a
> separate .php file) to load untilt he user selects the tab.
>
> How can I do
Pardon the mixing of comment formats.
// must be non-blank - values are digits
...
// "Port not found" in previous list - values are strings
...
// "Port not found" in previous list - value is a string
// "Port not found" AND "Country not found" - how do I require both?
Can I do this as
var ads = $(this).html();
On Jan 30, 9:06 pm, felipe <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I am trying to insert adsense code as follows:
>
> var ads = $(this).text(); /// the adsense code goes here
>
> $(tr).append( '' + ads + '' ) ;
> $(tr).addClass('ads');
> $('table#' + tablename + ' tr.hea
On 31/01/2008, Feijó <[EMAIL PROTECTED]> wrote:
> Its possible to simple use like this?
> $('.qualif[level>3]').remove();
I don't think there is a way to do that unfortunately.
Pete had a good point about optimising your selector for speed though.
For example, if you know all the .qualif ele
You may want to have a look at:
cluetip: http://plugins.learningjquery.com/cluetip/demo/
On Jan 30, 12:15 pm, Sean O <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I'm looking for (likely) a plugin that will allow text/images to overlay a
> small menu when hovered on, disappearing onMouseOut after a second
On Jan 30, 9:10 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote:
> resizable will not be able when using ajaxpro,the javascript error:
> "c[0] has no properties"
>
> code:
> for(var i in this.options.modifyThese) {
> var c = this.options.modifyThese[i];
> c[0].css({
> width: modifier.width ? mo
On Jan 30, 3:14 pm, carvingcode <[EMAIL PROTECTED]> wrote:
> I have a tab that I don't want the content (generated from a
> separate .php file) to load untilt he user selects the tab.
>
> How can I do this?
>
> TIA
If the tab is not active it won't load anyway. Another option is to
set all tabs u
I've had a lot of questions about modal windows and UI Datepicker, so
I created a demo example using thickbox:
http://marcgrabanski.com/code/ui-datepicker/extras/thickbox-datepicker
I hope that helps.
On Jan 30, 10:55 am, Eric Martin <[EMAIL PROTECTED]> wrote:
> On Jan 30, 6:13 am, rayfidelity
Hi,
I'm looking for (likely) a plugin that will allow text/images to overlay a
small menu when hovered on, disappearing onMouseOut after a second or two.
Example:
http://www.medhelp.org/posts/show/418157
Something similar to the ContextMenu plugin would be great, if you could set
the trigger
This was a major reason for moving to YUI on a current project I'm
working on.
Eric
On Jan 27, 10:12 am, Christoph Haas <[EMAIL PROTECTED]> wrote:
> Fellow earthicans...
>
> A year ago I needed an autocompleter and tried Dylan Verheul's plugin
> (http://www.dyve.net/jquery/?autocomplete). I fou
Looks really nice, but I would second Dan's comments and would probably
suggest you implement the history plugin. Being in the DC area, 508
compliance is a big sell.
On 1/30/08, Dan G. Switzer, II <[EMAIL PROTECTED]> wrote:
>
>
> >Sapitot Creative is a Design firm that recently redesigned their
>
>Sapitot Creative is a Design firm that recently redesigned their
>website. jQuery is being used to enhance page transitions and to give
>a little flair to the print and web portfolio sections. What is real
>interesting is the unconventional use of jQuery-ui.tabs plugin for the
>main navigation.
>
Marcos Aurélio schrieb:
Ok, see:
Join http://www.animeschool.com.br/example/.
First test:
Put in login "AAA" and name "bbb" click the button and submit it.
Second test:
First click the button. He acknowledge the mistakes, all ok. Now fill
in the fields with "AAA" and "bbb" and click the butto
Love it!
On 1/30/08, motob <[EMAIL PROTECTED]> wrote:
>
>
> Sapitot Creative is a Design firm that recently redesigned their
> website. jQuery is being used to enhance page transitions and to give
> a little flair to the print and web portfolio sections. What is real
> interesting is the unconvent
;) I thought you'd like that.
Michael
On Jan 29, 2008, at 12:17 PM, Aaron Heimlich wrote:
And you got my extensible file extension --> plugin mappings
request in
there too! Woot!
On Jan 29, 2008 4:29 AM, Michael J. I. Jackson
<[EMAIL PROTECTED]> wrote:
Hi all,
Just wanted to let you a
Hi Cabbite
Thanks for your 0.02
Its possible to simple use like this?
$('.qualif[level>3]').remove();
if level bigger then 3, remove it :)
My code is dynamic, I cant just wrote all numbers I dont need to remove,
like your example. Has to use a condition.
Feijó
cabbiepete escreveu:
On Jan 30, 2008, at 10:24 AM, studiobl wrote:
I'm having trouble with a jQuery selector that contains a variable.
I'm trying to target an element that has a class of "orderInfo" and an
id of "billy"
So, I set a variable:
var tabText = "billy";
...and it works if I use the string:
$(".ord
Rus Miller schrieb:
There is a label.error and a label.checked but does anyone know how I
would display a label.pending (perhaps with a spinner) while the
validation (especially a remote request) is happening?
Thanks.
You can still use jQuery's ajax events to display a busy-indicator:
http:
Dave Stewart schrieb:
Hi there
I'm building a login form, with a "Forgot password" link. When
clicked, I need to unset some validation options to successfully
submit the form.
The code I'm running does this:
1 - remove the validation constraints from the password field
2 - hide
User is banned.
-js
On 1/30/08, ++ Corn Square ++ <[EMAIL PROTECTED]> wrote:
>
>
> Most Forex traders loose money, don't be one of them
> Forex made easy is as simple as you would want it to be. ...
> Forex can be made easier for beginners to understand it and here's how:-
>
> http://tiniuri
Hey no problem, and yea. I think they are moderated
On Jan 30, 2008 7:23 AM, studiobl <[EMAIL PROTECTED]> wrote:
>
> Thanks, ocyrus!
>
> That helped! ...it does take dismayingly long for posts to show up
> here.
>
> On Jan 29, 1:49 pm, ocyrus <[EMAIL PROTECTED]> wrote:
> > I recently solved this
Hi,
Does anyone know how to make the Datepicker (calendar) be displayed by
clicking on a link next to a textfield. I know it has a button option
and a focus option, but our old calendar used to be launched by a
link, so users are used to that. Does anyone know how to do that?
Thanks,
-Roman
Apparently the addOption() plugin doesn't like using $(this). I
thought I had tried that loop before, that was the reason. I am sure
there is a way to add and remove options without that plugin. Any
pointers on where to start there?
On Jan 29, 6:20 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:
On Jan 30, 5:40 am, Rus Miller <[EMAIL PROTECTED]> wrote:
> There is a label.error and a label.checked but does anyone know how I
> would display a label.pending (perhaps with a spinner) while the
> validation (especially a remote request) is happening?
>
> Thanks.
On Jan 30, 6:13 am, rayfidelity <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I want to enable datepicker in the modal window that
> opens...datepicker works fine for itself but i cannot get it to work
> in modal. Any ideas?
Can you clarify what you mean by "cannot get it to work in modal"?
>
> Modal win
Sapitot Creative is a Design firm that recently redesigned their
website. jQuery is being used to enhance page transitions and to give
a little flair to the print and web portfolio sections. What is real
interesting is the unconventional use of jQuery-ui.tabs plugin for the
main navigation.
Check
I will give that a try thanks.
On Jan 29, 6:20 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:
> Basically you can do this:
>
> $('select').each(function() {
> $(this).doWhatever() // will run the method doWhatever on the currently
> iterating select
>
> });
>
> -- Josh
>
> - Original Mes
Hi there,
I tried to nest an ExtJS TreePanel into an Accordion menu (provided by
jQueryUI) like this :
-Header1
-Header2
MyTree
-Header3
When I click on Header2, the TreePanel works fine (on FF only, IE doesn't
seems to work). If I click on another header and come back to Header2, the
the acc
$("#scrollStats").html('bold');
$("#scrollStats").text('text');
I'm having trouble with a jQuery selector that contains a variable.
I'm trying to target an element that has a class of "orderInfo" and an
id of "billy"
So, I set a variable:
var tabText = "billy";
...and it works if I use the string:
$(".orderInfo[id='billy'"];
...but not the variable:
$(".
Nevermind. I got it to work. Thanks for the tips. They helped.
On Jan 29, 6:20 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:
> Basically you can do this:
>
> $('select').each(function() {
> $(this).doWhatever() // will run the method doWhatever on the currently
> iterating select
>
> });
>
EngenderHealth, a nonprofit organization, just redesigned its web
site. They use jQuery in several places: menus, SIFR page titles,
subpage "related info" links (in places), and even on its donation
page.
http://www.engenderhealth.org
(Note: some Flash on the site, though I don't think it is r
Most Forex traders loose money, don't be one of them
Forex made easy is as simple as you would want it to be. ...
Forex can be made easier for beginners to understand it and here's how:-
http://tiniuri.com/c/u7
Hi Felix,
I would have thought doing an attribute selector like you suggest was
better.
something like
...
$('.qualif[level]).each
...
to at least get rid of anything that doesn't have the level attribute.
Also if you use the same tag name for all of these attributes its
worth adding that
I have a tab that I don't want the content (generated from a
separate .php file) to load untilt he user selects the tab.
How can I do this?
TIA
Thanks Morgan- I'll make that change
On Jan 29, 10:58 pm, "Morgan Allen" <[EMAIL PROTECTED]> wrote:
> The minVersion in the install.rdf is 2.0.0 I changed to 2.0.0.* and it
> installed
>
> On Jan 29, 2008 9:33 PM, Bill Orcutt <[EMAIL PROTECTED]> wrote:
>
>
>
>
>
> > Thanks for the useful feedback
Hi,
i encounter problems with the getJSON method
when i do that:
$.getJSON("http://localhost/jas/www/rmt.php5?action=airport_state";,
{country: $(this).val()}, function(json)
{
$.log(json);
});
nothing happends. there is even no connection trace in firebug
but
$.get("http://localhost/
Hi there
I'm building a login form, with a "Forgot password" link. When
clicked, I need to unset some validation options to successfully
submit the form.
The code I'm running does this:
1 - remove the validation constraints from the password field
2 - hide any error messages that
Thanks, ocyrus!
That helped! ...it does take dismayingly long for posts to show up
here.
On Jan 29, 1:49 pm, ocyrus <[EMAIL PROTECTED]> wrote:
> I recently solved this solution this way,
>
> $(document).ready(function(){
> $('#profile-nav').children().each(function(){
> $(this).click(func
hi,
did you find how to do it?
thank you
On 30 dez 2007, 20:10, Jirka <[EMAIL PROTECTED]> wrote:
> I try to add googleadsenseafter first paragraph of an article. Here
> is my code:
>
> $('.article p:eq(0)').after('
> ...GOGLEADSENSECODE... ');
>
> But it looks that tag script shouldnt be add i
Hello,
I am trying to insert adsense code as follows:
var ads = $(this).text(); /// the adsense code goes here
$(tr).append( '' + ads + '' ) ;
$(tr).addClass('ads');
$('table#' + tablename + ' tr.header').after(tr);
Nothing happens. If I put some other html code into scalar ads, it
works.
An
Or, if you know that you'll be using just text (no html tags), you
could do this:
$("#scrollStats").text("someting");
--Karl
_
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jan 30, 2008, at 11:11 AM, Bhaarat Sharma wrote:
*dope*
$("#scrollStats").html("
Jörn Zaefferer schrieb:
You could improve the demo by adding cursor:default for the menu. The
text-selection cursor is rather irritating inside the menu.
Yep, that demo page still needs a lot of work.
It would be nice to be able to open the menu on hover, maybe powered by
the hoverintent me
On Jan 30, 2008, at 10:57 AM, Bhaarat Sharma wrote:
Hi ty,
If I understand your question correctly..I think you mean that if this
menu was used throughout the site and your pages would be doing an
include on this js file, will the menu stay the same from page to page
with user selections. The a
oh haha thanks. we replied at the same time :)
On Jan 30, 11:11 am, Bhaarat Sharma <[EMAIL PROTECTED]> wrote:
> *dope*
>
> $("#scrollStats").html("someting");
>
> that works.
>
> ...should visit the api's more often...
>
> On Jan 30, 10:55 am, Bhaarat Sharma <[EMAIL PROTECTED]> wrote:
>
> > Hi
>
*dope*
$("#scrollStats").html("someting");
that works.
...should visit the api's more often...
On Jan 30, 10:55 am, Bhaarat Sharma <[EMAIL PROTECTED]> wrote:
> Hi
>
> Can someone please tell me how i can change the text between span tags
> on the fly using jQuery
>
> I have tag like this
>
>
Try
$("#scrollStats").html("im here!!");
Bhaarat Sharma wrote:
Hi
Can someone please tell me how i can change the text between span tags
on the fly using jQuery
I have tag like this
i have tried these but none seem to work
$("#scrollStats").val("im here!!");
$("#scrollStats").setText("w
Hi ty,
If I understand your question correctly..I think you mean that if this
menu was used throughout the site and your pages would be doing an
include on this js file, will the menu stay the same from page to page
with user selections. The answer is yes (i think), because it is using
cookies.
Hi
Can someone please tell me how i can change the text between span tags
on the fly using jQuery
I have tag like this
i have tried these but none seem to work
$("#scrollStats").val("im here!!");
$("#scrollStats").setText("works?");
Thanks!
1 - 100 of 131 matches
Mail list logo