Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 117
Search took 0.32 seconds.
Search: Posts Made By: lauthiamkok
Forum: JavaScript frameworks 09-22-2010, 06:05 PM
Replies: 0
Views: 953
Posted By lauthiamkok
jqeury: facebook + coca-cola on facebook

Hi,

Does any one know how can I make programme like Coca-Cola on Facebook, where you can click on the images, and you will see a facebook popup, then you can comment on the image?
...
Forum: JavaScript frameworks 09-13-2010, 05:24 PM
Replies: 0
Views: 984
Posted By lauthiamkok
jquery: unbind a loaded function

Hi,

I have a function which will resize the image background when the page is loaded,

$(document).ready(function(){
loadBackground();
});

and I want to 'unload' or 'remove' this loaded...
Forum: JavaScript frameworks 08-06-2010, 04:30 PM
Replies: 0
Views: 1,320
Posted By lauthiamkok
jquery: toggling the sibling

Hi,

I want to toggle the next sibling of a link in a list like this,

<ul>
<li><a href="#">1</a></li>
<li><a href="#">2</a>
<ul class="selected">
<li><a href="#">2.1</a></li>...
Forum: JavaScript frameworks 07-27-2010, 07:01 PM
Replies: 1
Views: 4,697
Posted By lauthiamkok
jquery: multiple file upload + jquery form + input hint

Hi,

I am using 3 different types of plugin to validate a form, such as below,
http://lauthiamkok.net/tmp/jquery/multifiles/form.php

below is the source of these plugins,...
Forum: JavaScript frameworks 07-23-2010, 11:26 PM
Replies: 3
Views: 11,684
Posted By lauthiamkok
thanks guys. just got it sorted with plug in...

thanks guys. just got it sorted with plug in below!

http://malsup.com/jquery/form/#getting-started

http://www.web-development-blog.com/archives/jquery-form-plugin-and-php-file-uploads/
...
Forum: JavaScript frameworks 07-23-2010, 03:54 AM
Replies: 3
Views: 11,684
Posted By lauthiamkok
jquery: how do I serialize file type input in jquery

Hi,

I want to serialize file name of the file being uploaded in the input type file <input type="file">, but when I serialized the form in jquery I just got the input type text and others not the...
Forum: HTML & CSS 07-15-2010, 06:30 PM
Replies: 0
Views: 571
Posted By lauthiamkok
Drop down menu’s 3rd tier: to match the width of its widest sibling.

Hi,

I wonder why the width of the 3rd list in my drop down menu does not have the width of its longest text length. I have removed the width completely so that by default, the width of the list...
Forum: JavaScript frameworks 03-26-2010, 11:57 PM
Replies: 3
Views: 1,838
Posted By lauthiamkok
i think i just worked it out in this way... ...

i think i just worked it out in this way...

$('#menu > ul > li > a:last').bind('click', function() {
var path = $(this).attr('href');
document.location = path;
return true;...
Forum: JavaScript frameworks 03-26-2010, 11:49 PM
Replies: 3
Views: 1,838
Posted By lauthiamkok
a link in the last item, such as, <li><a...

a link in the last item, such as,

<li><a href="index.php">menu 4</a></li>

is it possible?
Forum: JavaScript frameworks 03-26-2010, 07:33 PM
Replies: 3
Views: 1,838
Posted By lauthiamkok
jquery: to set the <a> link to return true again

Hi,
I have menu which nested with sub menu like this,

<div id="menu">
<ul>
<li><a href="#">menu1</a>
<ul>
<li>sub1</li>
<li>sub2</li>
</ul>
Forum: JavaScript frameworks 02-26-2010, 01:10 PM
Replies: 4
Views: 3,211
Posted By lauthiamkok
thanks! :p

thanks! :p
Forum: JavaScript frameworks 02-26-2010, 01:04 PM
Replies: 4
Views: 3,211
Posted By lauthiamkok
i have thought of that but i have no idea how to...

i have thought of that but i have no idea how to loop through the split array...

var currentArray = currentValue.split(' ');

any ideas...?

thanks,
L
Forum: JavaScript frameworks 02-26-2010, 01:59 AM
Replies: 4
Views: 3,211
Posted By lauthiamkok
jquery: toggle an input value??

Hi,

this thread is related to the previous thread I have made on here,
http://www.codingforums.com/showthread.php?p=926672#post926672

I managed to add a new value to the existing value of the...
Forum: JavaScript frameworks 02-25-2010, 05:10 PM
Replies: 2
Views: 1,863
Posted By lauthiamkok
hi there! yes you are right. for instance, i...

hi there!
yes you are right. for instance, i might have a few existing values (which I might pull from a database) already in that input field like this -

'jquery php'

then when I add a new...
Forum: JavaScript frameworks 02-25-2010, 04:28 PM
Replies: 2
Views: 1,863
Posted By lauthiamkok
Jquery: adding input values each time on top when click

Hi,
I am trying to write this code which the value in the input field can be added on top each time when you get the value from links,

$(document).ready(function(){
autofill();
});
...
Forum: JavaScript frameworks 02-10-2010, 06:43 PM
Replies: 2
Views: 2,427
Posted By lauthiamkok
hello thank you for this!:) it's written in...

hello thank you for this!:)

it's written in php to generate that list from the database.

now I know i have the invalid html mark-ups!

thank you for the help! :thumbsup:
Forum: JavaScript frameworks 02-09-2010, 05:27 PM
Replies: 2
Views: 2,427
Posted By lauthiamkok
jquery: remove the last letter

Hi,

I wonder how to remove the last letter inside an element,

This is the code I came out with so far, but I cannot get the last letter from the structure of my elements and text - have I done...
Forum: JavaScript frameworks 02-08-2010, 09:30 PM
Replies: 3
Views: 2,117
Posted By lauthiamkok
ello! thanks for guide! :) eq() - now I know...

ello! thanks for guide! :)

eq() - now I know that this is what I should have looked into!

thanks :thumbsup:
Forum: JavaScript frameworks 02-08-2010, 05:20 PM
Replies: 3
Views: 2,117
Posted By lauthiamkok
jquery: next() and nested elements

Hi,
I have nested elements like below,

<div>
<p>Hello Again</p>
<p class="selected"></p>
</div>

<div>
<p>Hello Again</p>
Forum: JavaScript frameworks 01-09-2010, 01:31 AM
Replies: 3
Views: 8,526
Posted By lauthiamkok
yes it works with this ...

yes it works with this

$(this).css({color:'#999999'});

thanks :thumbsup:
Forum: JavaScript frameworks 01-08-2010, 03:49 PM
Replies: 3
Views: 8,526
Posted By lauthiamkok
jquery: change the input font colour

Hi,

How can I change the font colour in the input fields such as the example below?

The default text for all input fields are set to be black by default in CSS.

But I want to set the font...
Forum: JavaScript frameworks 12-13-2009, 04:00 PM
Replies: 2
Views: 3,479
Posted By lauthiamkok
thank you so much for this. now I know why it...

thank you so much for this. now I know why it didnt work! thanks! :thumbsup:
Forum: JavaScript frameworks 12-13-2009, 03:19 AM
Replies: 2
Views: 3,479
Posted By lauthiamkok
jquery: IE doesnt fade in with animate()

Hi,
Does anyone know why IE does not fade in the image with animate() like firefox does?

here is my jquery code,

$(document).ready(function(){

$("#supersize").css({
opacity: '.0',...
Forum: JavaScript frameworks 11-25-2009, 02:24 PM
Replies: 0
Views: 728
Posted By lauthiamkok
jquery: getting the variable's value from a link

Hi,
Is it possible to get the values of variable from a link and then pass it into javascript?

for instance from the link here,
<a href="incl_layouts/form_sign_up.php?w=500&h=100"...
Forum: JavaScript frameworks 11-24-2009, 10:31 PM
Replies: 6
Views: 5,696
Posted By lauthiamkok
yes you are right! it is now working better than...

yes you are right! it is now working better than reload :thumbsup:

thanks :D
Showing results 1 to 25 of 117

 
Forum Jump

All times are GMT +1. The time now is 12:41 AM.