Thanks!
On Apr 28, 3:53 pm, Charlie Griefer wrote:
> On Tue, Apr 28, 2009 at 1:56 PM, René wrote:
>
> > Assuming:
>
> >
> > Both
> > Red
> > Blue
> > Green
> >
>
> > Prev
> > Next
>
> > Just wondering if someone has figured a simple jQuery function for
> > moving through the a select list (us
I'm having the same problem. It makes sense to hilite individual days
because those days might be important.
On Apr 7, 7:04 am, MorningZ wrote:
> That doesn't make any sense
>
> the control by default is looking for the user to choose one
> individual day
>
> On Apr 7, 8:15 am, Danny wrote:
>
I've tried to two different datepicker scripts and what I'm trying to
do is hilite which dates satisfy a certain condition.
For example, when the page loads I will make a JSON call to the server
to return all dates that are holidays, then on the inline datepicker I
want to hilite those cells in r
The navigation works but the slider does not Driving me crazy!
Here is what I got... Thanks!
$(function() {
$("#top-nav ul").lavaLamp({
fx: "backout",
speed: 700,
click: function(event, menuItem) {
Use a regex:
$('body').html( $('body').html().replace(/(got|the)/g,'$1') );
On Apr 28, 9:39 am, kazim mehdi wrote:
> hi
> by using the following code i am able to find only first occurrences
> of the keywords can anyone help me to make it work for all of the
> occurrences.
>
> thank you
>
> fu
Use a regex:
$('body').html( $('body').html().replace(/(that|your)/g,'$1') );
On Apr 28, 9:39 am, kazim mehdi wrote:
> hi
> by using the following code i am able to find only first occurrences
> of the keywords can anyone help me to make it work for all of the
> occurrences.
>
> thank you
>
Brian thanks for the reply! However... If I take away the Jquery.js
and keep the jquery.1.3.2 the coda slider will stop working and the
navigation will start working...
Here is the link to the actual page that has the code...
www.txenergysaving.com/audits/
Thanks for your help!
Scott
I'm testing on Windows 7 and have not checked to see if its related to
that ...
The following code does not run in IE 8:
$(window).resize(function(){
alert("Stop it!");
});
Can anyone verify,
Thx
The documentation doesn't seem to detail the optoins and the demos use
some but without any explanation of what options and settings are
available. For example, what does 'Unique:' mean? Or 'Control:'?
ACE Solution! Thanks
more compact than this would be:
works with keydown event too. do you think I'll have some problem with
browser, etc?
navigation is working with keyboard here: http://dmtr.org/
On Apr 28, 12:10 pm, George Adamson
wrote:
> Are you able to use the keyup event instead or does
That's because eq() filters the whole collection of Ps from all DIVs.
Use nth-child instead (indexes start at 1 instead of 0):
$(".insidepost p:nth-child(1)").addClass("cambottomline");
$(".insidepost p:nth-child(2)").addClass("cambuy");
cheers,
- ricardo
On Apr 28, 10:15 pm, Tobias wrote:
> H
I don't see this group mentioned anywhere in the extension pages:
http://extensions.joomla.org/extensions/6731/details
http://joomlacode.org/gf/project/superfishmodule/
nor in the extension's source code. I assume you googled "superfish"
and found references to it. That way you'll end up in a Win
This is great. Thanks so much!
For some reason the DIV for the "commentWrapper" is not working on the
render page..here is what I have:
go
It appears the code you provided amends the DIV. Any thoughts would be
great?
On Apr 28, 5:11 pm, Jake McGraw wrote:
> You've got quite a few erro
You can also create a closure:
$(document).ready(function(){
$('#menulinks a').hover(function(){
var fn = function(el){
return function(){
$(el).stop().animate({
top : '40px',
paddingTop : '40px'
});
el = null;
You'll have to build up the selector as a string when you call
"setTimeout", that function is run out of the context of being within
that .each statement
so you'll have to do something like (and there's many ways of doing
this, i'll just show quick and easy), and yeah, the 's will have to
ha
You're not actually removing the span, though. It might be better to
create it once, then move it wherever as needed.
// inside $(document).ready()
$('').attr("id", "fieldstatus")
.addClass("fieldstatus")
.appendTo('body');
...
// inside your event handler
$('#fieldstatu
Here's my code:
$(document).ready(function(){
$('#menulinks a').hover(function(){
setTimeout(function(){
$(this).stop().animate({
top : '40px',
paddingTop : '40px'
Here is how I fixed it:
1) I needed to use remove() instead of empty()
2) To avoid conflicts in the the id, I appended (new Date()).getTime()
to each id to make sure all the id's are unique.
Now when I create a bunch of elements really quickly, they all
disappear eventually.
On Apr 28, 7:10
I am creating an element with createElement and then appending it to a
table and then after a few seconds, deleting it with a call to empty
(). This works fine
The problem seems to be that every time I create the element, I am
creating it with the same id and after a few iterations, it fails. It
http://www.jeremymartin.name/projects.php?project=kwicks
B wrote:
please see the link. http://www.phatfusion.net/imagemenu/
Anyone know of a jquery option that is similar to this mootools image
menu?
You know what else is annoying? When you try to be a smart ass and can't
even spell necessary correctly, it is REALLY ANNOYING. You know what else
is REALLY ANNOYING? When you use a period instead of a comma because you
don't know punctuation. What is the moral of this story? Don't be a smart
ass
Hi Annie
Apparently you are very confused.
The right place to solve your issue is :
http://joomlacode.org/gf/project/superfishmodule/forum/?action=ForumBrowse&forum_id=10474
You should discuss your issues with the Joomla extension developer that
has created this Joomla module : Cy Morris
The
It isn't MY "module". I'm simply one of the 16000+ people who use this
list to seek and share information about jQuery.
Your tirades posted to this list, thus far, suggest that you don't
have an "adequate" understanding about what jQuery even is. Nor
mailing lists, free software, Joomla, or the k
It REALLY isn't NESSECARY to CAPITALIZE words FOR emphasis. IT is JUST
annoying.
On Tue, Apr 28, 2009 at 6:14 PM, Annie Stevens wrote:
> Oh, I'm on a message board that isn't even FOR Joomla? That really cooks
> it then. Maybe the bad review is deserved, because THIS is the link he
> provided t
Hello - My basic code is something like
paragraph 1
paragraph 2
paragraph 3
paragraph 1
paragraph 2
paragraph 3
I was hoping to use
$(".insidepost p:eq(1)").addClass("cambottomline");
$(".insidepost p:eq(2)").addClass("cambuy");
Only works on the first div
Oh, I'm on a message board that isn't even FOR Joomla? That really cooks it
then. Maybe the bad review is deserved, because THIS is the link he
provided to get HELP for the BAD file that I had a helluva day with. How
else would I get here? He offered this link as support for the Joomla
plugin.
It looks like a basic horizontal accordian with the tags assigned
a background image.
On Apr 28, 6:37 pm, B wrote:
> please see the link.http://www.phatfusion.net/imagemenu/
>
> Anyone know of a jquery option that is similar to this mootools image
> menu?
I have a nested (many levels) list, each item containing a link which,
among other things should cause a child list (if there is one) to
display. All child lists are hidden by default.
...
Wow, really?
Ok here goes.
jQuery is a javascript framework. It has nothing to do with Joomla or
the other "site" you're talking about. The way it works is some people
create widgets using jQuery to help make life a little bit easier for
web developers. One of these widgets is a Superfish menu w
Hello,
I would like to show a tip or balloon with some info when a user
clicks an input to enter a value.
Does anyone knows a good plugin that does this?
Thank You,
Miguel
IDs are supposed to be unique. You should change subgroup into a class
then you can do the following to select it:
$('#group2 .subgroup')
On Apr 28, 4:04 pm, Dragon-Fly999 wrote:
> Hi, I have the following html and would like to find out how to select
> #subgroup under #group2. I tried $(#grou
No, you don't have it straight. I downloaded YOUR module, which refused to
install. So I studied the site for a long time trying to understand what
was the installation method. I spent a lot of time trying to learn how to
use this module which didn't seem to BE a module. It seemed all of you we
Hi.
I am experiencing an issue related with this topic:
Message: Invalid argument.
Line: 1061
Char: 4
Code: 0
URI: [...]/jquery-1.3.2.js
This occurs when clicking a jeditable (plugin) TD.
Trying to debbug I put some alerts here:
* alert(name)
* alert(value)
1060if ( set )
1061
Hello everybody,
first of all I want to say BlockUi plugin is very useful, perfect...
but now I've tried it in my WSS (Sharepoint) web form. I want to block
whole page, but it blocks just part of screen. When I click on
horizontal or vertical scroll then the screen below is not overlayed
and look
Hi everyone,
Does anyone know if there is a plugin to build diagrams like this
http://raphaeljs.com/
I want to do something very simple like baloons with a connection
Thanks in advance!
Hi everyone!
I'm trying to find any diagram construction plugin. I don't need
anything very complex like http://mindomo.com/ just a way to connect
some "baloons".
Does anybody know if there is a plugin to do that?
Thanks a lot!
Hi, I have the following html and would like to find out how to select
#subgroup under #group2. I tried $(#group2 #subgroup) but that didn't
seem to work. Thank you.
...
...
...
please see the link. http://www.phatfusion.net/imagemenu/
Anyone know of a jquery option that is similar to this mootools image
menu?
On Tue, Apr 28, 2009 at 1:56 PM, René wrote:
>
> Assuming:
>
>
> Both
> Red
> Blue
> Green
>
>
> Prev
> Next
>
> Just wondering if someone has figured a simple jQuery function for
> moving through the a select list (using the above type of controls).
> The idea is that the Prev anchor would dis
You've got quite a few errors in both your JavaScript and PHP, which
probably explains the lack of answers. Utilizing AJAX using jQuery and
PHP can be a bit confusing at first, I've tried to make some sense of
what you're doing here:
http://snipt.net/jakemcgraw/jquery-listserv-answer-ajax-comment
Assuming:
Both
Red
Blue
Green
Prev
Next
Just wondering if someone has figured a simple jQuery function for
moving through the a select list (using the above type of controls).
The idea is that the Prev anchor would disappear if the first option
is selected, and that the Next ancor would disap
Not really sure where jQuery would come in the equation, but "\n" is a
linebreak in JavaScript and works inside an alert string
so
var message = "Your Ticket# is: " +
$(xml).find("rid").text() +
"\nPlease make a note of it.";
On Apr 28, 12:23 pm, "508!" wrote:
> Hi,
>
> Just started g
Take a look at http://jquery.bassistance.de/validate/demo/marketo/mktSignup.js
The billingRequired method is what you should look for.
Jörn
On Tue, Apr 28, 2009 at 9:09 PM, Thomas Allen wrote:
>
> And I'm not going out of my way to change the subject...I'm not sure
> what's going on there.
>
>
jQuery UI (ui.jquery.com) is probably what you're after.
On Apr 28, 3:50 pm, Kynn Jones wrote:
> I want to use jQuery to re-implement a webapp that was originally
> implemented (by someone else) using Extjs.
> The only things I like about Extjs are the uniform look of its widgets and
> the broad
I want to display an unordered list of comments from my echoed JSON
result using this jQuery code block:
$("#goComment").click(function(){
bigComment = $("#bigComment").val();
$.post("i-upComments.php", { //this inserts the comment
into the 'comments' table in the DB
Hi,
I would like to select the text of this td and replace with another
string. How can that be accomplished?
8050 Drexel Ct, Lemon Grove, CA 91945
I tried with this without any success:
var vtd = $(".googledir tr td:contains('8050 Drexel Ct, Lemon Grove,
CA 91945')").html('8050 Blossom Lane, L
Hi,
i'm trying to create a Tree Menu as follows
Category A
Category A, Subcategory A
Category A, Subcategory B
Category A, Subcategory C
Category A
Category A, Subcategory A
Category A, Subcategory B
Category A, Subcategory C
all of the nav points are always visible
i
hi
by using the following code i am able to find only first occurrences
of the keywords can anyone help me to make it work for all of the
occurrences.
thank you
function test()
{
var keywords = ["got", "the"];
var el = $("body");
Heres a very stripped down version of the page i'm trying to write.
For simplicity, the Show / Hide functions (not meaning hide from view,
but within a db) are the same (they change the background color of the
div), the functions work for the most part but ignores certain divs
(the ones titled Hid
How can I select the text of the td below with jquery?
For example:
{code}
8050 Drexel Ct, Lemon Grove, CA 91945
{code}
I tried with something like this without much success:
{code}
var vtd = $(".googledir > table > tbody >tr > td:contains('8050 Drexel
Ct, Lemon Grove, CA 91945')").text();
co
Hi,
I would like to select the text of this td and replace with another
string. How can that be accomplished?
8050 Drexel Ct, Lemon Grove, CA 91945
I tried with this without any success:
var vtd = $(".googledir tr td:contains('8050 Drexel Ct, Lemon Grove,
CA 91945')").html('8050 Blossom Lane,
I haven't seen this problem elsewhere as of yet.
This is an internal site, so sorry, can't show the site.
What is occurring though, is when you mousover a menu item that has a
dropdown, it shows the first 10 pixels or so of the top of the
dropdown, then shows the rest of the dropdown 1/10 of a s
I haven't seen this problem elsewhere as of yet.
This is an internal site, so sorry, can't show the site.
What is occurring though, is when you mousover a menu item that has a
dropdown, it shows the first 10 pixels or so of the top of the
dropdown, then shows the rest of the dropdown 1/10 of a s
Hi,
Just started getting into jQuery yesterday. Question: How can I place
line breaks in alert box text?
[code]
var message = "";
message += "Your Ticket# is: " + $(xml).find("rid").text() + "
Please make a note of it.";
alert(message);
[/code]
The part, " Please make a note
I've solved this myself (a good night's sleep always helps!). Posting
results here for anyone interested.
The trick was understanding the callback option in fadeIn, which
didn't work as I'd expected (no parameters allowed; it doesn't really
call the function, just passes the function name to som
And I'm not going out of my way to change the subject...I'm not sure
what's going on there.
Thomas
On Apr 28, 2:40 pm, Thomas Allen wrote:
> > a custom method is used for the fields inside the Billing Address group
>
> What does this method do (or, better, what's it called so I can search
> the
That code is fine. It would have been much simpler if you had said
from the beginning you were going to attach a different click handler
for the LI elements! The 'return false' in it prevents the click event
from bubbling up to the DIV (as per my second example).
On Apr 28, 4:49 am, gostbuster w
I want to use jQuery to re-implement a webapp that was originally
implemented (by someone else) using Extjs.
The only things I like about Extjs are the uniform look of its widgets and
the broad range of widgets it supports. But I find Extjs too big to find my
way around, and often slow.
I know th
> a custom method is used for the fields inside the Billing Address group
What does this method do (or, better, what's it called so I can search
the source)?
Thanks,
Thomas
On Apr 28, 2:16 pm, Jörn Zaefferer
wrote:
> One alternative approach can be found
> here:http://jquery.bassistance.de/va
If you are just redirecting them to a URL, probably the easiest way would be
to use a CSS Dropdown box like the one described in this:
http://www.alistapart.com/articles/horizdropdowns/
On Tue, Apr 28, 2009 at 11:07 AM, Kim 'Johnson' Cameron
wrote:
> Hello,
>
> Searching for dropdown in the plugin
The problem was due to FireBug, the Firefox add-on.
One alternative approach can be found here:
http://jquery.bassistance.de/validate/demo/marketo/step2.htm
Instead of adding and removing classes, a custom method is used for
the fields inside the Billing Address group. Whatever works for you...
Jörn
On Tue, Apr 28, 2009 at 7:20 PM, Thomas Allen
Hello,
Searching for dropdown in the plugin repository yields dozens of results, most
of which have no comments. So I'm hoping someone out there with experience
using the kind of plugin I need can chime in. :)
Currently I have a SELECT field that contains theme names. Upon choosing a
value in
Try changing jQuery("#dir").attr("disabled", false) to jQuery
("#dir").removeAttr('disabled');
Also, does it give you a line number for the type mismatch that might
help track it down?
On Apr 28, 12:12 am, Sulfura wrote:
> Hi there,
>
> I searched the internet for hours but couldn't find
I guess you have bad template format. download the jbind samples and
test them in safari and firefox.
You can get them from here.
http://arashkarimzadeh.com/index.php/downloads.html?func=select&id=10
On Mar 24, 12:19 pm, ".Nil" wrote:
> Hi,
>
> I'm using JBind in my project. I have defined the
I have a form with a flexible number of field sets on my form. I think
it'll be easier to understand if you just fiddle around a bit here:
http://content.constructioninst.org/corporate_renewal.html
I want to make a handful of fields be required in each field set, but
only fields in visible field
I guess you have bad template format. download the jbind samples and
test them in safari and firefox.
You can get them from here.
http://arashkarimzadeh.com/index.php/downloads.html?func=select&id=10
On Mar 24, 7:49 pm, ".Nil" wrote:
> Hi,
>
> I have an Aspx page in which I'm using JQuery. I'm
Hi again,
I have now reproduced the issue in Safari on PC and now Chrome on PC.
One of the user's reported a problem with this site:
http://warehousetwentyone.com/
Clicking back and forth between warehouse and services in the
aforementioned browsers sometimes breaks. A refresh fixes it. And it
We can't access your example page.
"You don't have permission to access /hideshow.php on this server."
On Tue, Apr 28, 2009 at 04:58, tahooft wrote:
>
> For me one of the best things about jQuery is that I don't have to
> worry about browser compatiblity. I wrote some code to extend an
> excist
Hey Jörn,
But how can that be done with the code I currently have implemented?
$(document).ready(function() {
$("#commentForm").validate({meta: "validate"});
});
/Jesper
On 27 Apr., 14:14, Jörn Zaefferer
wrote:
> You need to add a custom
> method:
Hi,
Sorry for the vague question but I'm wondering if there are any known
issues with webkit browsers (e.g. Safari and Chrome) and jQuery 1.3?
I've had quite a few queries from users of my jScrollPane plugin who
have noticed issues with it on Safari on mac. They seem to be
related to either docu
If you want to style your alert use a submit button and preventDefault
(use whatever your confortable with to do this).
Instead, have it popup a div with your options in, and on the yes
button, trigger this to submit for the form
document.FormName.submit();
brian wrote:
As Mike said, bind a
As Mike said, bind a function to the form's submit and "return
confirm('your msg');"
On Tue, Apr 28, 2009 at 11:02 AM, hybris77 wrote:
>
> I think what I want to do is do a preventDefault(),
> throw a custom alert with a YES and NO button
> then reverse the preventDefault()
>
> maybe? Hmmm, but
Hello,
I have updated the code a bit, and I think that the problem I am
having has to do with scope and how I am binding my pause() and click
functions to my controls? Any help is greatly appreciated. Basically,
each time either arrow left or arrow right is clicked, I have bound a
function to cli
I was wondering if anyone could provide me with a sample in how to
configure the FCKEditor when I'm using the jQuery Plugin. Do I write
the toolbarset script in the configuration within the jQuery like so:
$.fck.config = {
path: "public/js/fck/",
toolbar: "Default
Hi,
Experiencing a little problem using the WYSIWYG inline editor with
jEditable. I have succesfully installed it and got it actually to
work. But here’s the thing: Once I specify options/controls for the
wysiwyg editor, these are only being applied to the first ‘editable’
area I activate. Once I
Are you able to use the keyup event instead or does it need to be
keydown?
(Inside the keyup event handler the option:selected item should be the
one you're after, instead of having to derive it.)
Failing that could you just find the next/previous option by using
selectedIndex +/-1 ?
Something
I think what I want to do is do a preventDefault(),
throw a custom alert with a YES and NO button
then reverse the preventDefault()
maybe? Hmmm, but im not sure im on the right
track here
/pär
Karl,
Really apprecaite the hard work you have put into this keep up the
great work, my one concern left for this plugin is in IE8
I've mentioned the problem here:
http://groups.google.com/group/jquery-en/browse_thread/thread/b265002a73625313/b6b16fa1a8ae5167?lnk=gst&q=dotnetshadow#b6b16fa1a8ae5
Hi, Amar!
A great tool (if you're not using it already) for debugging AJAX is
Firebug, which is
a plug-in for Firefox. You can see in the console by enabling it using
console.log();
in your code to view that data that the AJAX call is returning and see if it
looks correct.
Rick
On Tue, Apr 28,
Hi there,
I was wondering if you had a chance to try out cluetip on IE8 in
regards to this issue?
Regards DotnetShadow
On Apr 18, 12:32 am, Karl Swedberg wrote:
> Not sure what's going on there, to be honest. I'll have to take a look
> as soon as I find some more time. It might just be that
For me one of the best things about jQuery is that I don't have to
worry about browser compatiblity. I wrote some code to extend an
excisting jQuery application (Galleria) and only tested it in
FireFox.
I split a long list with thumbs in several blocks: deel0, deel1,
deel2 ... etc. After that I h
Hi Karl,
I'm having a similar issue as described in the original post here:
- I have three divs that I want to use for cluetip: info-1, info-2,
and info-3.
- I have six links: two for each div. They all have the correct rel
attributes set (two have rel="#info-1", and so on).
- Only the first of
Hi,
I'm using http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/,
but having some problems.
When the page im using it on loads there is javascript tracking code
loaded at the end of the page. If i click on the text box and start
typing before the tracking code has completed loading
Hi,
I have the following jQuery and HTML on my site, which performs both a
total CSS switch, and a partial CSS import:
$(document).ready(function() {
// COLOUR autumn
$("#css-autumn").click(function() {
$("link[rel=stylesheet]").attr({href : "/Portals/19/Skins/Design001/
autumn.css"});
});
//
hii!
I am using following javaScript libraries in a project -
jquery-1.3.2.min.js
thickbox.js
jquery-ui-1.7.1.custom.min.js
Everything is working fine. But problem is when I am trying to display
image/images in Thickbox via ajax then it doesn't work and if I am
displayin
Hi there,
I searched the internet for hours but couldn't find a solution which
worked for me. I use jQuery to call a Perl-Module which outputs an XML
File with all the Pictures in a specified Folder, which in turn is
interpreted by jQuery to show a preview of that same Folder.
It all works fine
Hi.
Is there any way how in JS show particular element in its valid or
invalid state?
I have a function which validate one element, and in this function i
need to change second elements state to valid or invalid.
Thank you.
Best regards.
Are you looking for getting the absolute position relative to the entire
document, try offset instead: http://docs.jquery.com/CSS/offset.
On Mon, Apr 27, 2009 at 9:28 PM, cohq82 wrote:
>
> I found out this http://docs.jquery.com/CSS/position
> But it is not relative but rather absolute position.
Hi,
I'm using JCarousel with transparent PNGs so I need to use a fix for
those images to show correctly in IE6. This fix is
http://jquery.khurshid.com/ifixpng.php
I run $('i...@src$=.png]').ifixpng(); on $(document).ready(); and is
fine, but the problem appears when the PNGs are inside a carou
this website dummie uses the jquery accordion plugin
http://gonzo.uni-weimar.de/~atix5565/kim/
for now everything is ok, but their is a bug which lets disapear a div
container.
try this steps first:
portfolio -> installations -> then the thirdmenu appears
reload page.
now second step:
news ->
A freelance developer designed this superfish menu for me, but he has
since taken another job and cannot assist me anymore.
I have this page in development:
http://www.cmpl.org/infinity/html/aboutus/index2.asp
Using this stylesheet for design:
http://www.cmpl.org/infinity/html/styles/styles2.
Hello all,
I'm using the Cycle plugin to build a photo album feature and am
looking for a way to jump to a specific slide when a user clicks a
thumbnail on a separate page. For example, I have a thumbnail listing
page:
http://static.spartaninternet.com/sandbox/schools/library.php
When clicking
I don't know that would work, Karl. It would have to be either at the
bottom of the page, as the elements wouldn't be in the dom yet if it
was just up top. But, that did inspire an idea. If you want to keep
the compliance, you could try the following:
Test
var css = document.create
I use the jQuery plugin treeView with jQuery 1.3.2
I have a long list (over 500 items), each item with 3 links .
Exemple :
first item
second item
With IE8, Opera, Safari and Google Chrome : no problem. Display the
tree takes 3 or 4 seconds.
But, with Firefox 3.10, it takes over
Ok, after large amounts of debugging and thinking things through, my
co-worker (who originally wrote the piece we're working on) noticed
that we close the modal dialog in which our form resides after we make
our call to submit. This makes perfect sense because the modal is no
longer needed after
subscribe (bind) to your form's 'submit' event . show your alert and
return true/false accordingly...false will prevent the form from
submitting.
On Apr 28, 5:59 am, hybris77 wrote:
> i might be tired right now but I cannot seem to figure out
> a good way to show an alert before processing a for
if "smt" is supposed to mean "something", then yes you did
e2 = document.getElementById('xxx'),
won't "get" this HTML
xxx
as the ID is not "xxx", you have "#xxx"
xxx
would be had with
e2 = document.getElementById('xxx'),
On Apr 28, 7:43 am, KidsKilla wrote:
> Hi there!
>
> Maybe I misse
You could also do this:
$('img').attr('src').split('/').slice(-1);
-Original Message-
From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
Behalf Of David .Wu
Sent: Tuesday, April 28, 2009 3:36 AM
To: jQuery (English)
Subject: [jQuery] How to get file name
$('img')
i might be tired right now but I cannot seem to figure out
a good way to show an alert before processing a form,
the form is not processed using AJAX, just passed
on to a PHP script
I might however want to implement AJAX when processing
the form, hmmm, maybe that will sort me out then I guess
/p
1 - 100 of 124 matches
Mail list logo