Using JavaScript in SharePoint 2010

I have an ASPX page using C# contained in a PageViewer Web Part in SharePoint 2010.  I have JavaScript used in the page that works when I run the page alone in IE 9, however when contained in a PageViewer Web Part, the JavaScript on the page does
not work.  I have tried putting the JavaScript into a separate .js file and referencing it in the ASPX code, and putting the JavaScript file in the document library and referencing that in ASPX which did not work.  I know how to add the JavaScript
into a Content Editor Web Part, however I do not have any idea how to get that to interact with the ASPX page to tell it the JavaScript is in the ASPX page.  Any ideas how to get my JavaScript to work in my scenario?

This normally depends where you position the CEWP.  At the bottom of the page is usually a safe bet.
Do you have permission to add CodePlex stuff (as a site collection admin)?  One of the projects that'll help you out is called JEFS (JavaScript Editor for SharePoint) and it was written for exactly the reasons you've experienced.
The CodePlex link is http://jefs.codeplex.com/
And I've recently written a review on it here:
http://social.technet.microsoft.com/wiki/contents/articles/22658.the-codeplex-corner-javascript-editor-for-sharepoint-jefs.aspx
Steven Andrews
SharePoint Business Analyst: LiveNation Entertainment
Blog: baron72.wordpress.com
Twitter: Follow @backpackerd00d
My Wiki Articles:
CodePlex Corner Series
Please remember to mark your question as "answered" if this solves (or helps) your problem.

Similar Messages

  • How to check the user hits to the sites (most often,frequently used sites) in sharepoint 2010?

    HI,
    How to check the user hits to the sites (most often,frequently used sites) in sharepoint 2010?
    could you please help on the above?

    Hello Sudhir muvva,
    Just to be sure, the default Web Analytics reports don't meet your requirements?
    http://blogs.msdn.com/b/ecm/archive/2010/03/21/introducing-web-analytics-in-sharepoint-2010.aspx
    Does reports have subjects like top pages and number of page views.
    - Dennis | Netherlands | Blog |
    Twitter

  • Create Document Sets with Javascript COM - Sharepoint 2010

    I am trying to work out if it's possible to create Document Sets in a list using the Javascript COM.
    If it is possible does anyone have an example of how to do it. I am using Sharepoint 2010.
    Many thanks.

    Hi,
    after long seeking I found this solution:
    SPController.prototype.createTestDocumentSet = function(){
            if(this.clientContext === null) {
    alert("Share Point couldn't be loaded.");
    return false;
            var item = null;
            var oList = this.clientContext.get_web().get_lists().getByTitle('ListName');
            this.clientContext.load(oList);
            var itemCreateInfo = new SP.ListItemCreationInformation();
            itemCreateInfo.set_underlyingObjectType(SP.FileSystemObjectType.folder);
            itemCreateInfo.set_leafName('Haliluja Doc Set');
            item = oList.addItem(itemCreateInfo);
    item.set_item("ContentTypeId", "0x0120D520");
            //item.set_item('ContentType', 'Document Set');
            item.set_item('Title', 'Haliluja Doc Set');
            item.update();
            this.clientContext.load(item);
            this.clientContext.executeQueryAsync(function(){console.log("doc set created!");}, function(sender,args){console.log("keep working... "+args.get_message());});

  • How do you disable a textarea using jquery in SharePoint 2010

    How do I write a script to disable a comment field called Space Available Comments?
    I tried using the following scripts and none of theme work.  I am still able to delete or type in texts in the textarea.
    $("textarea[title*='Space']").attr("disabled","disabled");
    $("textarea[name*='ctl10']").prop("disabled","disabled");
    $('textarea').attr('readonly','true');
    $('textarea[id="long id number here']").attr("disabled","false");
    Thank you very much.
    Here is source:
    <tr>
    <td nowrap="true" valign="top" width="190px" class="ms-formlabel"><h3 class="ms-standardheader">
    <nobr>Space Available Comments</nobr>
    </h3></td>
    <td valign="top" class="ms-formbody">
    <!-- FieldName="Space Available Comments"
    FieldInternalName="Space_x0020_Available_x0020_Comm"
    FieldType="SPFieldNote"
    -->
    <span dir="none">
    <span dir="ltr">
    <textarea name="ctl00$m$g_f9da713c_cff1_48d5_9943_08f4ac2b35b9$ctl00$ctl05$ctl10$ctl00$ctl00$ctl04$ctl00$ctl00$TextField" rows="6" cols="20" id="ctl00_m_g_f9da713c_cff1_48d5_9943_08f4ac2b35b9_ctl00_ctl05_ctl10_ctl00_ctl00_ctl04_ctl00_ctl00_TextField" title="Space Available Comments" class="ms-long" dir="none">&lt;DIV class=ms-rtestate-field&gt;Space Available Comments field value.&lt;/DIV&gt;</textarea>
    <input name="ctl00$m$g_f9da713c_cff1_48d5_9943_08f4ac2b35b9$ctl00$ctl05$ctl10$ctl00$ctl00$ctl04$ctl00$ctl00$TextField_spSave" type="HIDDEN" id="ctl00_m_g_f9da713c_cff1_48d5_9943_08f4ac2b35b9_ctl00_ctl05_ctl10_ctl00_ctl00_ctl04_ctl00_ctl00_TextField_spSave" />
    </span>
    </td>
    </tr>

    I tried both of your solutions above. It would not disabled.  Your solutions "should" work. But, I don't get it why it does not work. I even tried several other variations of scripts to target the textarea including the solution
    below from Robin. See his answers below.
    Do you think that it might have help you more to see the problem if I had provided the script below <input name...> between </span> and </td>? 
    I don't want to confuse you. But, the ultimate purpose is when a user selected the Space Available? to a "YES" option, the Space Avaiable Comments textarea should be disabled. My script to disable the radio button is working. I just need to find
    a solution how to disable the textarea and I running out of ideas. Please help if you can.
    Here is the script:
    <script type="text/javascript">// <![CDATA[
    if (browseris.ie5up && (browseris.win32 || browseris.win64bit) && !IsAccessibilityFeatureEnabled()){RTE_ConvertTextAreaToRichEdit("ctl00_m_g_f9da713c_cff1_48d5_9943_08f4ac2b35b9_ctl00_ctl05_ctl10_ctl00_ctl00_ctl04_ctl00_ctl00_TextField", true, false, "", "1033", null, true, null, null, null,"Compatible", "\u002fpmb_eTracking_Tool",null,null,null,null);}else{document.write("&#160;<br /><span class=\"ms-formdescription\"><a href='javascript:HelpWindowKey(\"nsrichtext\")'>Click for help about adding basic HTML formatting.</a></span>&#160;<br />");};//]]>
    </script></span>
    Thank you very much for your immediate response.

  • How to create an Assets Library using C# in SharePoint 2010?

    currentWeb.Lists.Add(
    "List Name",
    "List Description",
    SPListTemplateType.AssetsLibrary);
    This code does not work for me in Visual Studio. The SPListTemplateType enumerator does not have an assets library item.
    How can I programmatically create an Assets Library?

    To create an assets library you must activate first the Site Collection's Publishing Feature in order to set the availabilty of the "Asset Library" template.
    If not, no template on system and of course, error on code "Object reference not set to an Object......"
    Use this code:
    using (SPSite oSite = new SPSite(myUrl))
    if (oSite != null)
    using (SPWeb oWeb = oSite.OpenWeb())
    if (oWeb != null)
    oWeb.AllowUnsafeUpdates = true;
    //activating web feature
    Guid guidCollectionPublishingfeature = new Guid("F6924D36-2FA8-4f0b-B16D-06B7250180FA");
    //activating site feature first
    if (oSite.Features[guidCollectionPublishingfeature] == null)
    oSite.Features.Add(guidCollectionPublishingfeature, true);
    if (site.Features[guidCollectionPublishingfeature] != null)
    SPListTemplateCollection templateCol = web.ListTemplates;
    foreach (SPListTemplate t in templateCol)
    if (t.Name == "Asset Library")
    SPListCollection coll = web.Lists;
    Guid guid = web.Lists.Add("listname", "listdescription", t);
    coll[guid].Update();
    oWeb.AllowUnsafeUpdates = false;

  • Is anyone here using Safari with SharePoint 2010?

    If so have you seen any javascript validation errors like "The server method ‘ValidateTerms’ failed”, “The server method “GetMatches” failed", or "“There was an error processing the request” when navigating around a user profile in edit mode?

    @Old Toad: Thanks for the compliment on our software. It is very much appreciated and I am glad you like it.
    We have actually been doing web hosting for over 10 years, just not under the RAGE brand.
    @cake artist: Most web hosts will work with iWeb without any problems. Web hosting is very standard. It usually does not matter who you go with unless you require something special which most iWeb sites won't. The biggest advantage we offer is we are Mac guys who know iWeb very well and can help with any iWeb related problems. We can also guarantee 100% compatibility with our free iWeb SEO Tool so you only have to deal with one company if you have any issues.
    We can offer phone support if you really need it, but we have found that providing step by step help over email is much more effective.
    Anyways, just wanted to clarify and hope this helps!

  • How to Insert user selected files as list attachment using JavaScript?

    I could able to Inset list items using ECMA Script, But for the user added attachment how to save it to list item.
    Please help

    check the similar post
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/3d92510f-f966-45b2-989d-734ba21c5ce5/how-to-attach-file-to-list-item-using-javascript-in-sharepoint-2010?forum=sharepointcustomizationprevious
    More links
    http://sharepoint.stackexchange.com/questions/88487/using-sharepoint-client-api-to-upload-file-as-attachment-in-javascript
    http://sharepoint-community.net/forum/topics/copy-attachments-of-sharepoint-list-item-to-a-document-library

  • Use of asp:Grid in SharePoint 2010

    Hi,
    I have a form in SharePoint where data from a table in Database is exposed to user via asp:Grid. This grid has bunch of input fields and checkboxes to represent data in the table. There is also a Save button on the form upon pressing it, data should be saved
    back to the table. Right now all the rows in the grid are being saved when Save button is pressed even though 1 out of 100 rows in the grid are edited. I do not have row wise edit button/link because we do not want user to click on edit link of every
    row for eiditing multiple rows. Is there any way the unique identifier of the row is saved in a hidden field when editing a row and only those rows are saved back to the DB?
    Thanks in advance.

    Hi,
    According to your post, my understanding is that you want to update mutiple rows when using Gridview in SharePoint 2010.
    We can update multiple records in a GridView on a single button click using JSON in ASP.NET.
    For more information, you can refer to:
    Update Multiple Rows of GridView using JSON in ASP.NET
    Walkthrough: Performing Bulk Updates to Rows Bound to a GridView Web Server Control
    Inline Editing and Updating in GridView with check box
    Multiple Controls in Gridview to Update Sharepoint List
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • Prepare sharepoint 2010 with sp2 environment on windows server 2012 R2

    HOw  prepare sharepoint 2010 with sp2 environment how i  install sharepoint 2010 with sp2 in a windows server 2012 
    i mean
    from scratch  i just prepared a windows server 2012 R2 vm
    and i set all required  roels (Appserver,webserver etc) according to this link
    http://social.technet.microsoft.com/wiki/contents/articles/12502.how-to-install-and-configure-windows-server-2012-for-sharepoint-2010.aspx
    and i have sharepoint 2010 set up, and i downloaded sharepoint 2010 sp2
    from this link
    http://www.microsoft.com/en-us/download/details.aspx?id=39672
    now should i install sp2 and install sharepoint 2010 binaries?
    adil

    SharePoint 2010 has no supportability statement for Server 2012 R2.  I would not use it until Microsoft releases a supportability statement.
    Even it  has no supportability for server 2012, but sharepoint 2010 running fine in my server 2012 test environment
    adil
    You indicated you were using 2012 R2.  SharePoint 2010 supports Server 2012 (non-R2) with SP2 media, but has no supportability statement for Server 2012 R2.
    Trevor Seward, MCC
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • SharePoint 2010 Web Analytics Reports Not Displaying Data

    Hi,
    I'm currently having some issue with the Web Analytics Reports. It had been working fine for the past 1 year and suddenly a few months back, the Web Analytics is not showing any data. Have already troubleshoot the issue using the
    Troubleshooting SharePoint 2010 Web Analytics Article and all values show the correct date and time. 
    Therefore, I have performed a more in-depth analysis and found out that the WAHierarchyData table in the Reporting Database only have Root ID
    I have verified with a working SharePoint environment and the table should contain all the SharePoint site ID. Also, I have looked into all the SharePoint and Windows logs and all found to be showing the services to be running normally. I would like to check
    if there is a way to restore the data in this table or is there any other ways I can trace and troubleshoot this issue.
    Background information
    SharePoint Version: Service Pack 2
    SQL Server: Cluster Environment
    3vild3vil

    Hi,
    I queried the WAHierarchyData table in my environment, and there should be id column in returning result.
    You could manually run timer job related to Web Analytics service application and check ULS log for error message.
    To narrow down the root cause, we need query SharePoint database tables and compare query result, which might exceed the supported scenario. I'd recommend you open a ticket with MS support, they could reach your envrionment and troubleshoot the issue for
    you. For your convenience:
    https://support.microsoft.com/contactus
    Thanks for the support.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Saving Files from Word 2010 into SharePoint 2010 document library deployed as a sandbox solution gives "Web page no longer exist" Error 410

    Created a new SharePoint 2010 List Definition project, Sandbox deployment option. List Definition type: Documents Library. When attempting to save into the document library from Microsoft Word 2010 I get "The webpage no longer exists" error in
    the File Save dialog
    If I change the type of the solution to Farm solution it works as expected.
    IISLOGS:
    2013-12-19 10:12:01 127.0.0.1 PROPFIND / - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 207 0 0 35
    2013-12-19 10:12:01 127.0.0.1 PROPFIND /sites - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 207 0 0 26
    2013-12-19 10:12:01 127.0.0.1 PROPFIND /sites/team1 - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 207 0 0 30
    2013-12-19 10:12:01 127.0.0.1 PROPFIND /sites/team1/Lists - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 207 0 0 32
    2013-12-19 10:12:01 127.0.0.1 POST /_vti_bin/shtml.dll/_vti_rpc - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 200 0 0 10
    2013-12-19 10:12:01 127.0.0.1 HEAD /sites/team1/_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.*&location=Lists/ListDefinitionProject1-ListInstance1 80 - 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 401 0 0 6
    2013-12-19 10:12:01 127.0.0.1 HEAD /sites/team1/_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.*&location=Lists/ListDefinitionProject1-ListInstance1 80 - 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 401 1 2148074254 2
    2013-12-19 10:12:01 127.0.0.1 HEAD /_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.*&location=Lists/ListDefinitionProject1-ListInstance1 80 0#.w|domain\username 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 200 0 0 23
    2013-12-19 10:12:01 127.0.0.1 GET /sites/team1/_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.docx&location=Lists%2FListDefinitionProject1-ListInstance1 80 - 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 401 0 0 10
    2013-12-19 10:12:01 127.0.0.1 GET /sites/team1/_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.docx&location=Lists%2FListDefinitionProject1-ListInstance1 80 - 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 401 1 2148074254
    2
    2013-12-19 10:12:01 127.0.0.1 GET /_vti_bin/owssvr.dll dialogview=FileSave&FileDialogFilterValue=*.docx&location=Lists%2FListDefinitionProject1-ListInstance1 80 0#.w|domain\username 127.0.0.1 non-browser;+(Windows+NT+6.1.7601) 410 0 0 34
    2013-12-19 10:12:01 127.0.0.1 PROPFIND /sites/team1/Lists/ListDefinitionProject1-ListInstance1 - 80 0#.w|domain\username 127.0.0.1 Microsoft-WebDAV-MiniRedir/6.1.7601 207 0 0 36

    Hi,
    According to your post, an error occurred when you used the custom Documents Library(List Definition using sandbox solution).
    Please check whether you have removed <ContentTypeRef/> in the <ContentTypes/> tag of Schema.xml file in your project.
    Here is a sample about list definition deployed as a sandbox solution, you can take a look at:
    http://sharepointbuzzer.com/2010/10/21/list-definition-using-sandbox-in-sharepoint-2010/
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Reports development in sharepoint 2010

    Hi All,
    I have a client requirement to create graphs reports and dashboard which should show the data in different graphs types and should give more information. The reports data will be from SharePoint list or may be from Oracle. They are already creating graphical
    reports in excel for their process flow. And my client is very eager to know/see reporting functionality in SharePoint 2010. My manager is asking me to create some good graphs charts like if they wanted to see the month wise report and if they change month
    then the graph(3D) should show the reflection movements like power pivot.
    Can someone please please suggest me how can i develop such stylish and more attractive reports.
    Thanks in advance
    MercuryMan

    Given they are already using Excel for reporting then I think the best bet would be to use PowerPivot for SharePoint 2010. Here is the introduction article for that.
    Introduction to PowerPivot for SharePoint 2010
    Other options you have are using Reporting Serivces and Performance Point. Start with deploying SSRS in SharePoint Integration mode and deploy your SSRS reports directly to SharePoint 2010. 
    Some useful information
    Business Intelligence with SharePoint 2010
    How
    to integrate SSRS Reports with PerformancePoint Dashboards in SharePoint 2010
    Business
    Intelligence using Office + SharePoint 2010 + SQL Server 2008 R2
    Amit

  • Thread Process is exiting without completing the process in SharePoint 2010 webpart

    We have implemented simple thread to process to excel upload into SharePoint 2010 custom list.
    Thread process running in local SharePoint 2010 environment (OS -Windows 7). Once we deployed in SharePoint server,
    Thread process is exiting without completing its proces.
    Please let us know if you know any resolution.
    Code is as below
    Thread thread = new Thread(new ThreadStart(UploadData)); //Upload is the method where data will insert into List
    Thread.Start();
    Marulasiddappa SB (Swamy)

    Hi,
    According to your post, an error occurred when you used Thread in SharePoint 2010 web part.
    Please can do as follows:
    1. Execute the  UploadData method to see whether it can work.
    2. Debug your solution in Visual Studio to get more information the error,
    It will be easier for us to research if you can provide more code.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • SharePoint 2010 crawl sql Network wait

    Hi
    Using 3 tier sharepoint 2010 farm (1app server and 2 WFE). All servers 2008r2, sql 2008r2.
    Suddenly we get a strange network wait on during crawls on one spesific contentDB in SQL:
    Any ideas how to fix this? Can it be related to throttling on the webapplication? We did set throttling back to default values, didnt change anything though.
    brgs
    Bjorn

    Hi,
    May be huge data in Search database and net work performance capabilities causes this error.
    Ensure your SQL Server meets the all best practices stated below the link.
    http://msdn.microsoft.com/en-us/library/cc966412.aspx.
    Murugesa Pandian.,MCTS|App.Development|Configure

  • Javascript with window.location.href no longer working in Content Editor in Sharepoint 2010 where users have IE8

    I have recently found that when using a Sharepoint 2010 Content Editor web part to house some Javascript that the window.location.href (or window.location) is not working when the end users have IE8 installed on their PC's.  We have confirmed
    that the window.location.href is working if the users are on IE7 or Google Chrome with the same Javascript.  In addition, we added alert() to the javascript to ensure that it was infact running, which the alerts appeared on the screen with no issues. 
    The result that I am receiving in IE8 is that when the window.location.href is set to the url that the user should be directed to, it simply refreshes the current page and leaves the user where they originally were.
    I have seen the posts to have my site setup as a Trusted Site, but this is not an option for our company as they defined all internal Sharepoint sites as trusted already.  Besides this, having all users go into their Internet Options is not really a
    solution but a means to annoy your users.
    What I am looking for is a permanent solution that I can make within my javascript that will work for both IE7 and IE8 users within a Sharepoint 2010 environment.  If anyone has any suggestions, please let me know.  Thanks in advance.
    Below is a snipet from my javascript code for review:
    <script type="text/javascript">
    function RedirectUrl() {
    alert('button pressed');
    var tb = document.getElementById("tbSearch").value;
    var cs = document.getElementById("sfield").value;
    var url = "";
    if (tb != "") {
    url = "FilterName=" + cs + "&FilterMultiValue=*" + tb + "*";
    if (cs == "Request%5Fx0020%5FID1"){
    alert("Request%20ID%20Search.aspx?" + url)
    window.location.href = "Request%20ID%20Search.aspx?" + url;
    else {
    window.location.href = "All%20Requests.aspx?" + url;
    else {
    return false;
    function ClearUrl() {
    window.location.href = "All%20Requests.aspx";
    </script>
    <br/>
    <span style="font-family: calibri; color: #000066; font-size: 14pt; font-weight: bold">Search</span>
    <br/>
    <span style="font-family: calibri; color: black">Search Field: </span>
    <select id="sfield" style="font-family: calibri; font-size: 10pt">
    <option value="Request%5Fx0020%5FID1">Request ID</option>
    </select> &#160;
    <span style="font-family: calibri; color: black">Search Text: </span>
    <input id="tbSearch" onkeypress="if (event.keyCode == 13) document.getElementById(&#39;btnSearch&#39;).click()" style="font-family: calibri"/>
    <button id="btnSearch" onclick="return RedirectUrl();" type="submit" style="font-family: calibri">Search</button>
    <button id="btnClear" onclick="return ClearUrl();" type="submit" style="font-family: calibri">Clear Search</button>
    <br/>
    <br/>
    <span style="font-family: calibri; color: #000066; font-size: 14pt; font-weight: bold">Search Results - All Requests</span>
    <br/>

    Hi,
    According to your post, my understanding is that the window.location.href not worked in IE 8.
    I think the issue
    is likely due to the value of your variables. If they contain special or invalid characters, those needs to be passed through
    encodeURIComponent before being assigned to window.location.href.
    http://stackoverflow.com/questions/18278777/window-location-href-not-working-on-ie
    http://stackoverflow.com/questions/6297291/window-location-problem-in-ie
    You can also use the following methods to check whether it works.
    Window.navigate();
    Winodw.history.back();
    Self.location.href;
    Top.location;
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

Maybe you are looking for

  • Short dump while displaying a particular tab

    hi all,         In a user exit, in IW32 transaction i am displaying a particular tab after a popup warning box. I am able to display the tab i wanted to using field-symbols and changing the T185 at runtime (i changed the build group and panel fields

  • How to manipulate a javascript object in java?

    Hi, I am fiddling with the java scripting interface. As I understand the rhino engine is packaged with the jdk but what I don't understand is how does one reconcile the objects one gets from their engine (e.g. sun.org.mozilla.javascript.internal.Scri

  • Can't get the [Inspectable] tag to work

    Hello there. I'm having a nightmare trying to get metadata tags to do what I expect them to. I've used the following code to define a variable in a custom MXML component, (in the proper place in the script tag of course) quote: [Inspectable(name="Tes

  • All my downloads show insignia of internet explorer even when downloaded in firefox,WHY?

    i only use mozilla firefox. Everything i download in firefox, shows the logo of internet explorer and not mozilla firefox. why so? how do i overcome this.

  • Line Rental Charge Rise - if already on a one-year...

    I have a ONE-YEAR Unlimited Anytime Plan with BT which commenced on 16th July 2010. On renewal, the letter stated unequivocally that calls would cost £4.99 per month and line rental £12.79 per month 'for another year'. There is, therefore, no way BT