Send An SMS To The Mobile (cell Phone) Of The Customer - Renewals
Aug 19, 2009
i have multiple customers in my company and i want to send an SMS to the mobile (cell phone) of the customer that he must pay the renewals fee's durng 2 weeks.. so i send to him an e-mail and at the same time i send for him an SMS message to his phone to ensure that he will read the message that he must pay the fee's. i dont know if there is a module that can make this idea or i must buy a product or register into a website to make this module...
View 1 Replies
ADVERTISEMENT
Aug 20, 2006
is it possible to detect if a user is on a cellphone? I think this is
important because cell-phone browsers don't support CSS (will they ever??)
View 2 Replies
View Related
Dec 26, 2011
Ihave a question about using Javascript in combination with JQUERY,
I want to send out a SOAP request (write) in a JQUERY based application.
Is this the right approach?
Do I have to specifiy that the Write command is in fact Javascript? If so, how do I do that?
View 14 Replies
View Related
Sep 26, 2011
I am working on a Phone Number Form. The link of script: [url]
Questions:
(1)I wanted to know if code this script so that instead of the phone number appearing as: (123)456-7890
So that it appears as: (123) 456-7890 with a blank space after the ")"
(2)If that's simple, is there a way to error-check it so that only numbers can be entered into the phone number input field?
View 1 Replies
View Related
Jun 6, 2010
The very simple code (below) works fine in Safari (and Chrome, Firefox etc.), but it doesn't work in Mobile Safari. Why?(You can find a working example at: http:[url]....)
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>[code]......
View 2 Replies
View Related
May 5, 2011
I am using customer tag in my HTML to represent some structured information. Below is an example:
<person name="Frodo">
<weight value="100" unit="kg" />
<race value="Hobbit" />
</person>
I am latter render this element by replace the <person> element with real HTML element using javascript. (here "replace" means I create new HTML element and remove the element with custom tag). It works fine with Firefox and Chrome and other browsers, however, IE8 does not work (haven't tested other version of IE yet). In IE8, it simply cannot parse the <person> element's structure. I read an article said you have to put customer tag into a user defined namespace, well, after doing that, IE8 was able to parse the <my:person> element structure. However, jQuery selector does not work, now $("my:person") does not return the element. How to make it work for both IE8 and jQuery? I feel bad if my application does not support IE8.
View 2 Replies
View Related
Aug 18, 2010
I'm still having problems with a Javascript 'Lookup' function. Basically, I have a select menu 'Customer' which triggers a 3 JS functions, to populate 2 extra select menus.
Code:
<script type="text/javascript" language="javascript">
$(document).ready(function(){
$('#customer').change(function() {
var option=$(this).val();
getCustContact(this);
getCostCentreContact(this);
$.get('getCostCentre.php',{select:option},function(data){
$('#result').html(data).hide().fadeIn(1000); .....
Using IE Developer Tools, during debugging, I get this error:
Expected ';' Error
This relates to either:
Code:
eval(ajax_CustContact[index].response);
or
Code:
eval(ajax_CostCentreContact[index].response);
(it's a bit random, as sometimes it works, sometimes it doesn't)
I have tried changing the 'custid' to 'custname' to check whether it was an integer causing the problem, but had the same problem.
View 6 Replies
View Related
Nov 30, 2011
I'm using this jQuery slider code that my coworker and I manipulated so that 3 images slide at a time. It worked great till we updated our jQuery to 1.6.2 from 1.3.2 (we were going to go with 1.7.1 but now that we've encountered this problem we have to hold off). I went all the way back to 1.4.1 and it works okay but not as bad as the latest versions.
I included ALL the code. You can literally copy this whole thing into a blank page, save it and test it. It's not really working as expected right now. It doesn't slide all the way back to 1 and there's an empty slide after 9. I will work with my coworker to debug it more but I want to know why versions 1.4.3 through 1.7.1 break it.
<html>
<head>
<script src="http://code.jquery.com/jquery-1.4.1.min.js" language="javascript" type="text/javascript"></script>
[Code].....
View 2 Replies
View Related
Feb 27, 2011
Adobe forums suggested a jquery solution. I want to continuously rotate my customer testimonials without requiring users to click to advance. I have successfully implemented rotating text, but am having problems including the image too.
On this page, the words "cash register" is actually the "alt=" for the image, but no image displays.[URL]..
[Code]...
View 2 Replies
View Related
Jan 11, 2012
For my Dreamweaver program I want to update to the latest version so I can build within it, but I'm confused as to what are the latest versions of jquery.mobile-min.js and jquery.mobile-min.css. The site has 1.0 as the latest stable build. But Dreamweaver's third-party folder (the place that houses jQuery mobile scripts) has 1.0a3 for the css and 1.5 for the mobile.min file. I was told by Adobe that they do not update jQuery scripts when updating their program. I think that's a mistake, myself. Whether it is or not, it sure would be useful now.
View 1 Replies
View Related
Jan 27, 2009
I have this layout
And then I have this code to determine the cell height.
So basically I need both my first and last cells to be able to have the mainbody cells height, but that code only works when placed in or after the cell being measured, in this case "mainbody", my question is this, is their a way to get the size of the mainbody cell before its done loading somehow?
View 3 Replies
View Related
Sep 15, 2011
I have a javascript program that uses a HTML table as an Excel-like grid. The user can use arrow keys to navigation the grid. When the user selects a cell and then hits <Enter> key, the program turns the cell from read-only to editable (an input box), and select all the text in the input box. When the user hits <Esc>, the program cancels the changes that the user has made and turns the cell back to read-only. So far so good. The problem is that as soon as the user hits <Esc> key and turns the cell back to read-only, I find that I cannot move the input focus back to the cell any more. Actually I cannot move the input focus back to _any_ cell in the table. When this happens, the user cannot use arrow keys to navigate the grid any more (like the grid has lost the input focus). The user needs to use the mouse to click at a cell in the table to get things working again.
The user can get around with this problem by un-selecting the text from the input-box before hitting <Esc>. But this is not something that I expect the user to remember to do. I need a way to fix this problem. I tried the logical thing and programmatically un-select the text before turning the cell back to read-only. But this actually made thing worse - this causes the workaround to stop working.
The only browsers that I have tested this program is IE6 and IE8. I have not tested this in any other browser.
Attached is a simplified version of the program that can show this problem in action. This simplified program first adds an empty table on the web page, and then creates an instance of the CEstGrid class that takes care of the grid. CEstGrid will add two rows of test data into the table with two columns in each row. The user should use a mouse to click at one of the cell, and the cell should be highlighted. The user uses arrow keys to navigate the table. When he reaches the end of the table, he will wrap around to the other side of the table. Let say the user reaches the cell in row-1 column-2, he hits <Enter> to change the cell to editable. He will find the text in that cell to be highlighted. When he hits <Esc> at this moment, he will find that he cannot use the arrow keys to navigate the table any more, and this is the problem. Please rename the test program from .TXT to .HTML to test it.
View 6 Replies
View Related
Apr 11, 2010
imagine table with 15 rows and 3 columns. If I move mouse over any cell I want some other specific cells to change their borders like with pseudo-class :
example
<style>
.boryellow {border: 3px solid yellow}
.borblue {border: 3px solid black}
</style>
this will work, a cell can change itself
<td name="third" class="boryellow" onmouseover="this.className='borblue'" onmouseout="this.className='boryellow'">cell</td>
even when dealing with empty images - click on link will change border of different element - imgs, but not span or td ...
<a href="#" onclick="document.all.xxx.className='borblue'; document.all['name'].className='borblue';
[code].....
Replacing any element link by "third" or "spanx" will cause stuck ant not executing other actions.
View 4 Replies
View Related
Aug 18, 2010
I'm having problems with a Javascript 'Lookup' function.
Basically, I have a select menu 'Customer' which triggers a 3 JS functions, to populate 2 extra select menus.
Using IE Developer Tools, during debugging, I get this error: Expected ';' Error
This relates to either: eval(ajax_CustContact[index].response); OR eval(ajax_CostCentreContact[index].response); (it's a bit random, as sometimes it works, sometimes it doesn't)
I have tried changing the 'custid' to 'custname' to check whether it was an integer causing the problem, but had the same problem.
View 4 Replies
View Related
Mar 15, 2011
<script language="JavaScript">
function changeColor(cell_id){var state1="#dde6ed"; var state2="#ffc20e"; var cellid = new Array ("id1", "id2", "id3", "id4", "id5", "id6"); for(var i = 0; i < cellid.length; i++){var nav = document.getElementById(cellid[i]); if(cellid == nav.id){nav.style.backgroundColor=state2;} else {nav.style.backgroundColor=state1;}}}
</script>
what is wrong with this script. I put an onClick= changeColor(this);" in my <td> tag to call the script but still not working.
View 4 Replies
View Related
Mar 6, 2011
I have a table with two rows and 4 columns, the first cell has rowspan of 2. How do I insert something into the first cell only? How can I get the cell index of the first cell?
View 4 Replies
View Related
Nov 11, 2011
I having a hard time to know how to present checkboxes injava script.
If you take a look here :
If you notice, each checkbox has a different id than the other. how i represent them in javascript or get them together as one for one id. also, how do i represent them in mysql. As you know in simple html form, the checkboxes has one id.
View 2 Replies
View Related
Apr 10, 2009
Have someone experience with javascript programming on windows mobile. the event.keycode will not work.
View 3 Replies
View Related
Aug 14, 2006
Just wondering if anyone knows if it is possible to identify if a user is accessing a web page with a device suc as a blackberry?
View 5 Replies
View Related
Apr 12, 2004
Here's what I need to do... When someone is typing in a phone number, after the first 3 chars, put a dash, then the next three chars, another dash.
View 1 Replies
View Related
Jun 22, 2007
Can anyone shed some light on the JavaScript support on many of the
most common mobile browsers (the newest versions of Blazer, Blackberry
and Pocket IE)? Specifically, I am trying to render some content using
innerHTML when the page loads without success. document.write is
supported but does not meet my needs.
View 1 Replies
View Related
Aug 1, 2011
do anyone know how do i slidedown animation using jquery mobile ? im able to do the normal animation thats given in example. Its just kind of hide and show but i need to do a animation like when i click the top div tag it should slide down the inner div content.
View 1 Replies
View Related
Jun 8, 2011
I'm new to jQuery, and I'm wondering how I would go about making a control post back to the server automatically, in my case I have a mobile datepicker, and I'd like for it to post back to the server when a date is selected from the calendar. I'm sure it is very simple, but I am new with jQuery.
View 2 Replies
View Related
May 25, 2010
I'm developing a website and I need the browser to scroll to an anchor. It MUST be animated, so I tried to use jQuery for that. Tried this:
function goToByScroll(id){
$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}
It works perfectly on Firefox and Safari(on the Mac). On Mobile Safari it first goes to the top of the page, then it scrolls to the anchor I want it to scroll to. What's the trick to make it work?
View 2 Replies
View Related
Sep 20, 2011
Im working on a mobile site for a friend and im curious, can i trigger javascript events on screen flick (By flick i mean the way to scroll through homepage screens). Id love to run a few things like that but i dont know if thats possible. If it is is there a tutorial about i could look at?
View 3 Replies
View Related
Jul 6, 2009
We've built a mobile version of a site for a client, and we want mobile browsers to be redirected to it when they type in the original URL: So when they go to http://www.ntsstaffing.com, they'll automatically get [URL].
View 2 Replies
View Related