Kali, since we're wondering if this is a jQuery problem, let's find out by
taking jQuery out of the equation. Where the code uses jQuery to load the
message into the #mailSuccess element, we'll just alert it instead - but
we'll call alert in exactly the same way that you're calling jQuery now.
Fi
I solved this, BUT:
another weird problem:
var message is passed to the function, so I have:
function successHome(message) {
setTimeout('$("#mailSuccess").html(message) 1000);
but it says 'message' is not defined
only this works:
function successHome(message) {
setTimeout('$(
var showDiv= $('#myDiv').html(message);
setTimeout(showDiv,5000);
get error: missing ] after element list
I googled this error, it seems the problem is the jQuery code..
although not sure..
would appreciate some suggestions...
thank you..
Sorry if this has been addressed before -- it's a hard issue to
describe.
The page in question:
http://testing.ericprice.cc
The code in question:
$(document).ready(function() {
$(".teaser").hover(function() {
$(this).addClass("hovered").find(".thumbnail").stop(true,
true
Hi,
I'm looking at the "JQuery TreeView - Sample 0" from
http://jquery.bassistance.de/treeview/demo/?1
Great work!
I have a question. How can I make the menu collapse upon clicking?
When I click, the menu expands, but if I click again the menu doesn't
collapse. Any help is appreciated.
Thanks in a
Hello,
I'm looking at the Sample 0 from http://jquery.bassistance.de/treeview/demo/?1
Great work!
I have a question. How can I make the menu collapse upon clicking?
When I click, the menu expands, but if I click again the menu doesn't
collapse. Any help is appreciated.
Thanks in advance
heres the answer to those of you seeking a way to have your event
listeners work regardless as to how you add it to the dom, its really
the icing on the cake for jquery - good job guys:
as of 1.3:
http://docs.jquery.com/Events/live#typefn
use the 'live' event handler it is like bind however it w
I have a page with links to a couple of slide shows implemented using
the innerfade plugin. I prefer this plugin because it gives smoother
transitions between images than I have been able to achieve using the
cycle plugin.
I would like to disable the innerfade when switching between slide
shows.
Hey guys,
On the topic of namespacing, I have also found 'pollution' of the core
a problem. I recently worked for a company that had over 30 plugins
and I did run in to conflicting problems, especially with jQuery UI,
which is one reason I stay away from it amongst others.
If you are interested
i am going to reword this question since no one seemed to be able to
answer it last itme i asked. thanks in advance for any feedback.
the problem i am having is with my event listeners that are initiated
after document load, using jQuery(function() {});
the behviours do not work for dynamic html
Hello guys and gals, would greatly appreciate it if anyone could help
out with a problem I'm having while using FCKeditor?!
Whenever I edit some content and submit it, it auto corrects stuff,
i.e. image tags or adds these: \" into places.
Creates loads of problems, nonetheless so if you wou
-Mensagem Original-
De: "Connor"
...
How would I go about targeting the p tag or the content inside?
---
Try:
$(xml).find('content:encoded').each(function(){
var text = $(this).text();
Maurício
Hello,
I am currently using the treeview plug in at
http://bassistance.de/jquery-plugins/jquery-plugin-treeview/
Is is a nice work, and I am really pleased with it. I, however, have a
problem of text alignment with the tree lines when I combined the
treeview with the tabview in the jquery-ui libr
On Sat, May 9, 2009 at 4:41 AM, naz wrote:
>
> Hello all, probably a simple question but I can't for the life of me
> figure out how to do this:
>
> I have a page that has information on various # anchors, a list of
> them are at the top and once clicked I need the one clicked to become
> underli
Simplest solution would be don't use the third level UL's, add custom
classes to the 3a and 3b you are showing and use css to customize.
Won't be fighting script or having to change absolutely positioned subs
that way
webhank wrote:
i am looking for a way to have superfish only hide the se
Hi Matt,
thanks for the response, but actually this was already clear for
me ;). Most importantly I need a workaround for it. I already tried
the following too:
var plan_price = obj.find("input[name='plan_price']:radio");
plan_price.each(function() {
$(this).click();
add the superfish-vertical.css file to page along with the
superfish.css, and in tag ul class="sf-menu" put class="sf-menu
sf-vertical". Done, menu now vertical
Englesos wrote:
Hi All,
I have been trying to talk “Superfish” into working as a vertical menu
for phpWebsite (as discussed h
Hi,
I've been experimenting with jQuery's AJAX capabilities. I was trying
to create an effect that pulls data from an XML RSS feed and displays
it. Long story short, I got everything to work, but I couldn't figure
out how to pull data from a CDATA section like the following:
I wanted to put
> However, I think it could be a good idea if the plugin would force
> using an iframe when the encoding is "multipart/form-data", even if
> the file input is empty.
I'm reluctant to make this change as it would probably catch a lot of
people off guard. The plugin has always been this way so cha
Hello all, probably a simple question but I can't for the life of me
figure out how to do this:
I have a page that has information on various # anchors, a list of
them are at the top and once clicked I need the one clicked to become
underlined and remain underlined untiled a different # is clicke
Ok, all Im trying to do is a simple jquery post. Here is the code.
function SubmitForm(method)
{
var login = document.form.login.value;
var password = document.form.password.value;
try {
$.post("../../content/jaxrep.php", { login: login,password:
password,method: method});
} catch(e) {
a
All,
I’d like to use JQuery internally to a library I’m writing for a
client of mine. My specialized library will be solely based on their
REST services. I’d like to use JQuery’s AJAX functionality but I don’t
want to cause any conflicts if the consuming developer is using JQuery
on their main pag
Hi,
I've created a parser and i know that it works properly, because if i
set a column to it in the tablesorter initialization works fine. Next
is the code:
$.tablesorter.addParser({
id: 'price',
is: function(s) {
return false
},
format: functi
I want to use UI theme colors on other elements of my pages and for
them to switch automatically when UI theme is changed. I was going
through css files generated by theme-rollerand didn't find any classes
just for defining colors or borders used in a theme.
For starters I wanted my form fields t
Hi All,
I have been trying to talk “Superfish” into working as a vertical menu
for phpWebsite (as discussed here) but whatever I do it insists on
staying horizontal.
I looked at the example at
http://users.tpg.com.au/j_birch/plugins/superfish/#sample3
but I don't understand "add the class sf-ve
Hi dude,
event.keyCode is exclusive for IE in FF you use event.which
var charCode = (evt.which) ? evt.which : evt.keyCode
switch (String.fromCharCode(chadCode)) { rest of code
Hi folks,
I want to select each row in a table. I am using a each iterator.
I want to differentiate the rows containing tag and others.
How can i do that
Note: i want to select each rows.
Appreciate each help
Hi everybody,
this task is very complicated to me, I hope to be as clear as possible
so apologize for confusion.
I've got this piece of code which is part of a form
N.
Select Number
1
2
3
Option Type
Select Type
Select One
Option 1
Option 2
Option 3
This should be fixed in v2.27:
http://www.malsup.com/jquery/form/jquery.form.js?2.27
I also added some unit tests to verify the various action
possibilities:
http://www.malsup.com/jquery/form/test/
Mike
On May 8, 1:40 pm, Cédric wrote:
> Hi,
>
> after upgrading jQuery.form plugin from versi
Not really. You have to meet only one condition - the list to tabify
has to be nested in a container. You can then put your panels
whereever you want. Of course you can't ask for Themeroller support in
that case.
--Klaus
On 9 Mai, 17:31, "kim...@gmail.com" wrote:
> Hi everyone,
>
> With the la
Sure, thats just as valid as em...@example.co.uk is.
Jörn
On Fri, May 8, 2009 at 8:57 PM, Brett wrote:
>
> I noticed that if you do the email: true in the validation and then
> try and type an email such as:
>
> em...@example.com.com
>
> it will mark it as valid. Is this intended?
>
>
> Even sa
Hi everyone,
With the latest UI release custom html structure for tabs plugin seems
to be unsupported, can you confirm this?
Thanks.
Hello Karl,
I sent you a login to my beta site. I am not sure if you had a chance
to look at it yet?
Thanks.
Bharat
Sorry - typo.
Height/min-heigh was the solution.
K
Den 9. mai. 2009 kl. 13.30 skrev krreks:
Figured it out and thought that I'll share the solution with the
world.
Setting a width/min-width did the trick.
Cheers
krreks wrote:
I'm working on an article module and have stumbled upon
Figured it out and thought that I'll share the solution with the world.
Setting a width/min-width did the trick.
Cheers
krreks wrote:
>
> I'm working on an article module and have stumbled upon a problem. I'm
> having several connected lists and need to float the li elements in two of
> the
I've tried about everything and can't get the results I need.
Basically I have some draggables in a movable div (pane). When I'm
over the pane I only want the draggable to be droppable on elements in
the pane (and have a visual cue as such). When I move beyond the pane
I only want the draggable
36 matches
Mail list logo