Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 8
1
2
3
>
Last
»
Showing results 1 to 25 of 184
Search took
0.59
seconds.
Search:
Posts Made By:
levani
Forum:
JavaScript frameworks
03-28-2011, 08:28 PM
Replies:
3
Jquery with dynamically added forms
Views:
819
Posted By
levani
I call it once on page load... ...
I call it once on page load...
$(document).ready(function() {
$('textarea.text').autoResize({limit : 300});
});
Forum:
JavaScript frameworks
03-28-2011, 06:55 PM
Replies:
3
Jquery with dynamically added forms
Views:
819
Posted By
levani
Jquery with dynamically added forms
I use jquery appendTo function to add new textarea forms dynamically and I also use jquery autoResize plugin to automatically change the height of the textarea while typing. Here is the code:
...
Forum:
JavaScript programming
11-06-2010, 02:15 PM
Replies:
0
Load multiple tooltips on the same page
Views:
1,348
Posted By
levani
Load multiple tooltips on the same page
I use this tooltip script on my site: http://craigsworks.com/projects/simpletip/
The problem is that I have several links in the same div class and I want to load different content in tooltip when...
Forum:
JavaScript programming
10-30-2010, 03:07 PM
Replies:
3
Multiple simpletips on the same page
Views:
1,973
Posted By
levani
Old Pedant Changing the user.php isn't a...
Old Pedant
Changing the user.php isn't a problem but how should I give the xyz variable value?
I knew that I need to do something like this but the problem is that I'm not a javascript programmer...
Forum:
JavaScript programming
10-29-2010, 04:19 PM
Replies:
3
Multiple simpletips on the same page
Views:
1,973
Posted By
levani
Multiple simpletips on the same page
I'm using this tooltip on my site: http://craigsworks.com/projects/simpletip/, I want to display some information about the user when someone hovers mouse on his/her username. This is the code I use...
Forum:
PHP
10-09-2010, 01:07 PM
Replies:
2
stristr function problem with unicode string
Views:
838
Posted By
levani
mb_stristr() works when I'm looking for English...
mb_stristr() works when I'm looking for English word in unicode string but it doesn't work correctly when the word I'm looking for is in unicode itself... it always returns false!
Forum:
PHP
10-09-2010, 12:27 PM
Replies:
2
stristr function problem with unicode string
Views:
838
Posted By
levani
stristr function problem with unicode string
I use stristr function to detect whether a word exists in string or not but if the word I'm checking for is written in unicode this function always returns false! Even if the word actually exists....
Forum:
PHP
09-29-2010, 07:46 PM
Replies:
15
wordpress custom fields
Views:
1,220
Posted By
levani
Try this: <?php...
Try this:
<?php if(get_post_meta($post->ID,'Name:') && get_post_meta($post->ID,'Name:') != '') : ?>
<br />Name:<?php echo get_post_meta($post->ID,'Name:',true); ?>
<?php endif; ?>
Forum:
MySQL
09-29-2010, 07:42 PM
Replies:
1
Join two tables
Views:
1,047
Posted By
levani
Join two tables
I have two databases - one for articles and the another for the articles' meta information (Like author, date, category and atc.). I have the following columns in meta table: ID, article id, meta...
Forum:
PHP
09-03-2010, 09:34 AM
Replies:
4
Restriction in Adding Events in Calendar
Views:
1,075
Posted By
levani
You should detect currently logged in user's...
You should detect currently logged in user's email and use this instead. If you use static email address - in this case rhoda.barrera@dunlop.ph - the number of rows found will always be more than 0...
Forum:
JavaScript programming
09-02-2010, 07:19 PM
Replies:
8
Three level connected boxes
Views:
1,310
Posted By
levani
Sciliano your code looks a bit easier to make it...
Sciliano your code looks a bit easier to make it work with options generated from database. But it has a serious bug. The script stops working if there is another form on the page... Beside the form...
Forum:
JavaScript programming
08-31-2010, 10:17 AM
Replies:
8
Three level connected boxes
Views:
1,310
Posted By
levani
OK, is there a way to add some value to each...
OK, is there a way to add some value to each option too? As I see now it changes names only...
Forum:
PHP
08-31-2010, 09:57 AM
Replies:
4
Restriction in Adding Events in Calendar
Views:
1,075
Posted By
levani
Try something like this: <?php $check =...
Try something like this:
<?php $check = mysql_query("SELECT * FROM tbllogin WHERE username = current_user_name AND department = current_department");
if (mysql_num_rows($check) > 0) {
echo "ADD...
Forum:
JavaScript programming
08-31-2010, 09:49 AM
Replies:
8
Three level connected boxes
Views:
1,310
Posted By
levani
DaveyErwin works fine. Thank you very much!!!
DaveyErwin works fine. Thank you very much!!!
Forum:
JavaScript programming
08-30-2010, 02:17 PM
Replies:
8
Three level connected boxes
Views:
1,310
Posted By
levani
Three level connected boxes
Is there a way add another dropdown form to this script?
http://javascript.internet.com/navigation/connected-comboxes.html
Or do you happen to have another script that does the same job? I need...
Forum:
PHP
08-06-2010, 03:02 PM
Replies:
3
Make url clickable
Views:
961
Posted By
levani
It should be: ...
It should be:
/(https?|ftps?|mailto):\/\/([-\w\p{L}\.]+)+(:\d+)?(\/([\w\p{L}#\/_\.]*(\?\S+)?)?)?/u
Forum:
PHP
08-06-2010, 12:51 PM
Replies:
3
Make url clickable
Views:
961
Posted By
levani
Make url clickable
I use this function to make urls clickable but if there # symbol in url it becomes clickable only before that chatacter.
function clickable($text) {
$text =...
Forum:
MySQL
07-31-2010, 02:47 PM
Replies:
2
Unicode characters become question marks after inserting into database
Views:
1,384
Posted By
levani
It works! Thanks a lot!
It works! Thanks a lot!
Forum:
MySQL
07-31-2010, 01:35 PM
Replies:
2
Unicode characters become question marks after inserting into database
Views:
1,384
Posted By
levani
Unicode characters become question marks after inserting into database
When I insert some text written in unicode into database, they become question marks. Database encoding is set to utf-8. What else may be incorrect? When I check in phpmyadmin there are question...
Forum:
JavaScript frameworks
07-28-2010, 09:49 PM
Replies:
7
Close cluetip when the mouse is out of link
Views:
1,889
Posted By
levani
I can't make it false because in this case it...
I can't make it false because in this case it would be imposible to click some links inside the cluetip as it would dissapear as soon as the mouse is out of the link.
Forum:
JavaScript frameworks
07-28-2010, 08:42 PM
Replies:
7
Close cluetip when the mouse is out of link
Views:
1,889
Posted By
levani
This is the HTML code: <a class="jt"...
This is the HTML code:
<a class="jt" href="ajax6.htm" rel="ajax6.htm" title="jTip Style!">
This is javascript:
$('a.jt:eq(0)').cluetip({
cluetipClass: 'jtip',
arrows: true,
dropShadow:...
Forum:
JavaScript frameworks
07-23-2010, 11:14 AM
Replies:
7
Close cluetip when the mouse is out of link
Views:
1,889
Posted By
levani
Close cluetip when the mouse is out of link
I there an option to close cluetip when the mouse is of from the link? There is mouseOutClose option but it doesn't close cluetip if you don't hover the cluetip itself first. The problem is caused by...
Forum:
Ajax and Design
06-24-2010, 06:55 PM
Replies:
4
Ajax tab navigation
Views:
2,299
Posted By
levani
Is that possible to display some loading icon or...
Is that possible to display some loading icon or text, for example "Please wait..." before the content is loaded in tab?
Forum:
PHP
06-11-2010, 12:18 PM
Replies:
3
Session caching problem
Views:
749
Posted By
levani
Fumigator You mean there is something wrong in...
Fumigator
You mean there is something wrong in the logout function?
Forum:
PHP
06-10-2010, 04:58 PM
Replies:
3
Session caching problem
Views:
749
Posted By
levani
Session caching problem
I have a strange problem with php sessions. I use them for authorization on my site. I store two variables - currently logged in user's id and username in session. When I log in with one username,...
Showing results 1 to 25 of 184
Page 1 of 8
1
2
3
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
02:56 PM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.