Hi all, sorry for my bad English.
I use the plugin named ajaxform, when I ajax post the form, I found
the fckeditor's value does not post.
I checked the codes of ajaxform, there are some some codes as follows:
// hook for manipulating the form data before it is extracted;
// convenient f
thanks
On Dec 7, 7:44 am, DanDan wrote:
> You have a style in your default css that is wider than the intended
> superfish dropshadow effect:
>
> #nav li {padding-right: 20px;}
>
> On Dec 6, 1:50 pm, "d.a." wrote:
>
>
>
> >http://www.designerschemes.com/
> > i am having problems with the dropsha
It's have been a long time since I use jQuery UI tabs in my project. My
client want dragable function, so I use this opportunity to upgrade all
jquery ui.
However, I notice one page got broken, because now the class used for
selected tab is hardcoded in the ui.tabs.js
I search the ticket and
You have a style in your default css that is wider than the intended
superfish dropshadow effect:
#nav li {padding-right: 20px;}
On Dec 6, 1:50 pm, "d.a." wrote:
> http://www.designerschemes.com/
> i am having problems with the dropshadow.
> it does not match the drop down container.
> any i
yes, but you can have a hold Division and add the CSS.
I dont mind an extra division to avoid using scripts to do the CSS for
me.
On Dec 7, 8:58 am, Dhruva Sagar wrote:
> @Nivanka but that presents a problem that I need to know the child elements
> of .work before hand.
> If the DOM is dynamic,
Rather than setting the opacity from a javascript I prefer if you can
do it in your CSS.
.work div{
opacity: 1 !important;
}
This is better as it doesnt go through the DOM to set the opacity. to
save memory, time of execution etc.
On Dec 7, 8:26 am, Dhruva Sagar wrote:
> What Greg has men
@Nivanka but that presents a problem that I need to know the child elements
of .work before hand.
If the DOM is dynamic, it might not be that simple. But I still agree that
your approach is better in the given context.
Thanks & Regards,
Dhruva Sagar.
On Mon, Dec 7, 2009 at 9:21 AM, Nivanka wr
I complete agree with Nivanka :). Didn't think of that :D
Thanks & Regards,
Dhruva Sagar.
On Mon, Dec 7, 2009 at 9:21 AM, Nivanka wrote:
> Rather than setting the opacity from a javascript I prefer if you can
> do it in your CSS.
>
> .work div{
> opacity: 1 !important;
> }
>
> This is b
Rather than setting the opacity from a javascript I prefer if you can
do it in your CSS.
.work div{
opacity: 1 !important;
}
This is better as it doesnt go through the DOM to set the opacity. to
save memory, time of execution etc.
On Dec 7, 8:26 am, Dhruva Sagar wrote:
> What Greg has men
What Greg has mentioned is absolutely true.
But I think the better / easier approach to solve this issue must be
something like this :
$(document).ready(function(){
$('.work').css('opacity', '0.6').children().css('opacity', '1');
//I am actually not very sure about the above code, if
Try this:
jQuery('#Directorships tbody tr').each(function()
{
if (jQuery('td:nth-child(7)', $(this)).text().toLowerCase() ==
'retired')
{
var td12th = jQuery('td:nth-child(12)', $(this));
The problem is in the way browsers render opacity. The spec reads that
only the element and not children should have the reduced opacity,
however none of the browsers have implemented this at last check
(maybe safari 4+).
Your best bet is to apply a background image with the designated
opacity as
Hey,
DEMO
I want to set opacity to ".work" , it works fine if i do $(".work").css
("opacity","0.6"); but, i don't want the class title and logo have
this opacity, how can i fix it?
Thanks for reading!!
I've seen the validation method for captha at this URL:
http://jquery.bassistance.de/validate/demo/captcha/
just wondering if anyone has gotten this to work with reCaptcha?
I'm having a #$*( of a time to get this to validate with
reCaptcha...any help is much appreciated.
On Dec 7, 12:36 pm, "evanbu...@gmail.com" wrote:
> I like to use the addClass method rather than embed CSS in my js
> code. I find it easier to maintain.
>
> $('td').addClass('myCSSClass');
>
> $('td').removeClass('myCSSClass');
Hi Evan,
I'd prefer that approach too. But the problem is this css
I like to use CSS classes in an external stylesheet and then use the
addClass method. I find the maintenance much easier this way.
$('td').addClass('myCSSClass');
to remove the CSS Class
$('td').removeClass('myCSSClass')
On Dec 6, 6:09 pm, Joshua Partogi wrote:
> Hi all,
>
> What is the cl
I like to use the addClass method rather than embed CSS in my js
code. I find it easier to maintain.
$('td').addClass('myCSSClass');
$('td').removeClass('myCSSClass');
On Dec 6, 6:09 pm, Joshua Partogi wrote:
> Hi all,
>
> What is the cleanest approach to remove a css attribute from the DOM el
http://www.designerschemes.com/
i am having problems with the dropshadow.
it does not match the drop down container.
any ideas?
thanks
When I specify a low timeout firebug's console shows the ajax request
as never ending -- is this just a problem with firebug or something
more serious? The callbacks (complete, error, etc.) all work
correctly...
.ajax({ ... timeout: 50 ... }) => causes the request to never stop in
the firebug cons
Hi all,
What is the cleanest approach to remove a css attribute from the DOM element?
Currently I have a DOM element which has css background color as such:
This is currently what I do:
$('td').css('background-color','').append(replacement);
But I'm not sure that is the good approach. Or is it
I'm using this code hightlight any table cell in the 12th column with
a value of zero which works well.
//SharesHeld
jQuery('#Directorships tr').each(function() {
jQuery('#Directorships td:nth-child(12)').filter(function() {
if (jQuery(this).text() == 0)
jQu
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F
On Sun, Dec 6, 2009 at 3:00 PM, factoringcompare.com
wrote:
> Hi,
>
> The below script collects a links ID when clicked and then posts via
> ajax. Works fine on plan page. When I dynamically l
Sorry forgot the code:
$("#field").rules("add", {
remote: {
url:"test.asp",
type: "post",
data: {fieldvalue: function(){
if ($("#field").val() == "")
return "empty";
else
return $("#field").val();
May be a dumb suggestion, but can't you set the value as "empty" when
there is no value?
On Dec 6, 7:53 pm, david wrote:
> Hi all,
>
> I want to make a remote validation on an empty field. Sometimes the
> field may be empty and sometimes not. This depends on the selection of
> other elements. I s
Hi,
The below script collects a links ID when clicked and then posts via
ajax. Works fine on plan page. When I dynamically load links
dynamically via ajax the script stops working. The ajax page is
collecting information via ASP so I don’t have any Jquery script
issues. I can’t work out why its s
I have this function for an ajax edit form.
$(document).ready( function() {
var form_id = '#';
$(form_id).bind('submit',function() {
var form_url = $(form_id).attr('action');
var page_target = form_url.substr(1).replace( new RegExp( "/" ,"g"), "_" );
var update_tar
Please see:
http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_AJAX_request.3F
You could simply create a function that takes a jquery object (or the
selector) as a param and does the striping. That way, you could call
the function whenever necessary.
Note, t
JQuery doesn't need to read your CSS files. That's the job of the
browser engine. What's the problem you're trying to solve?
On Sat, Dec 5, 2009 at 8:28 PM, Juan B wrote:
> Hi,
>
> My JQuery scripts and CSS files are placed in different folders. Is it
> possible to specify the paths to my CSS fil
hi
i have a form with submit button... ajax sending form value to my php
page and showing results in same page...
it is work perfect when click submit button but its going to my
process php page when hit enter. i want ajax to make same when hit
enter or click submit button btw thanks for spendi
I have a one-page website with a menu that is linked internally to
divs on the page. I want to make the menu links to get the css :active
state whenever the div with the corresponding id reaches a certain
position set from the top of the page (preferably with some margin
like between 30-60px from t
Hi,
My JQuery scripts and CSS files are placed in different folders. Is it
possible to specify the paths to my CSS files in my JQuery scripts so
it can recognize its classes?
Thanks
I am using about 25 jquery plugins along with 1.3.2 and jquery ui 1.7.
After using my app for a while firefox starts eating up memory and it
can get up to 500MB and more. What tips and tricks to you guys find
help eleminate memory leaks in your code?
Thanks,
James
Hello,
I would like to create a horizontal nav-bar (right-to-left) instead of
(left-to-right) for languages such as (Arabic, Hebrew, Urdu and
Farsi). I tried to alter the html tag but it does not
work for me. Any help please?
Regards,
Saleh
I have the content with stripped odd and even bar.
It works fine except when the data of comes from
ajax.
In the following sample code, if I click the menu1, the content is
updated with html but the stripped class will not fit into. That means
odd and even class are not added to.
I need to the fol
each menu item on the left has a corresponding div tag.
all but the first one is hidden.
you can use slideUp and slideDown to switch between them.
it will produce that same effect.
its just a vertical tabber :)
On Sun, Dec 6, 2009 at 5:00 PM, felicita wrote:
> Hi;
> I want to insert my content
Hi Guys’
I have hit a complete brick wall on this one.
I have an ASP page that lists out a DB into 3 columns. Each row has a
unique ID number. When the user updates a checkbox I would like to
fire off an AJAX update to my DB.
I have made the page that’s ready to receive the unique ID Number and
Hi all,
I have a for two text boxes. They are one entity for a check. I check
the two text boxes together. I made it in the following way that i
added for both of them one class and added a rule. My problem is the
following. I have text-box a and textbox b. For a certain value of
textbox a textbox
Hi
Ive got my menu displayed on this site http://valkesh.000space.com.
The issue I am having is that I want the hover image (red part) to be
displayed only when hovering the root li, and not all subsequent li
items in the menu.. because as you may see now, even when hovering the
li in the submenu
Hi all,
I want to make a remote validation on an empty field. Sometimes the
field may be empty and sometimes not. This depends on the selection of
other elements. I send them with the data hash of the remote method.
The response should be written next to the empty field.
As i understand, by defaul
39 matches
Mail list logo