Posts by Caio Gomes • 395 points
17 posts
-
2
votes1
answer2308
viewsQ: Problems with Xmlhttprequest in Chrome
After this update of Google Chrome to version 53, I am facing problems in calls Ajax (jQuery), $.http (Angularjs) and Xmlhttprequest (Javascript) presenting the following message: XMLHttpRequest…
-
1
votes0
answers141
viewsQ: Problem with label on top of graphics in Chartjs
I’m using Chartjs and Stackedbar to create some graphics, however, Chartjs has no option to put the respective values on top of the bars, for this, I implemented the following solution:…
-
0
votes0
answers72
viewsQ: CSS3 Border Radius and Background in IE 11
Hello, I’m facing a problem with border-Radius and background in Internet Explorer 11, it puts a slight white edge, in this case it sits on top of the border-shadow, however, if I take the effects…
-
3
votes1
answer154
viewsQ: Print PDF by Firefox
I am using the following command to print a PDF that is inside iframe, and the PDF is even local, on the same server: window.frames["imprimirpdf"].focus(); window.frames["imprimirpdf"].print(); When…
-
0
votes1
answer31
viewsQ: Update Drupal 6 CCK fields via another tool
I’m looking to update the Drupal 6 CCK fields through a mini panel where certain users can change only their information. I’m choosing to upgrade outside because it’s an area that customers already…
-
2
votes1
answer64
viewsQ: Style not propagate for parents
I have several elements inside each other and when I hover the mouse with the Hover it adds an edge to identify the element, however, as all have the same class, all items grab the edge. I want only…
-
3
votes2
answers1390
viewsQ: Dynamically change a class background
I have a site where the content creation is dynamic and the user can choose the color to be used in components, but, I need him to see the update in real time, then, I need the class to be changed…
-
0
votes1
answer1115
viewsQ: Copy HTML and change ng-model
I have a piece of HTML that I am duplicating via HTML. Within the scope, however, ng-model is not working. HTML: <html ng-app="App" ng-controller="Theme" > <head> </head>…
-
0
votes1
answer111
viewsQ: Cancel changes to Angularjs
I have the following code, to undo the changes: $pageContent = content; $scope.page = $pageContent.page; var pageBackup = $pageContent.page; $scope.cancelChanges = function() { $scope.page =…
-
1
votes1
answer68
viewsQ: wp_schedule_event is not working
I have the following function created in my functions.php. I’m changing the theme to schedule, and I can see that it’s scheduled by the function of next_schedule. add_action( 'after_switch_theme',…
-
4
votes1
answer114
viewsQ: Time in PHP format
am creating a wordpress function to schedule events in the following way: add_action( 'wp', 'prefix_setup_schedule' ); function prefix_setup_schedule() { if ( ! wp_next_scheduled( 'send_email' ) ) {…
-
-1
votes1
answer194
viewsQ: Error Angularjs
Hello, I am applying the following function in my Angularjs controller: $scope.cancelChanges = function() { $scope.name = $scope.namebackup; $scope.$apply(); }; However, when running $apply(), it…
-
2
votes2
answers122
viewsQ: Error with jQuery Colorpicker
I’m using the jQuery Colorpicker only this giving the following error: Uncaught Typeerror: Object [Object Object] has no method 'Colorpicker' My code is like this: <html> <head>…
jqueryasked Caio Gomes 395 -
2
votes1
answer672
viewsQ: Error 404 (Not Found) on Facebook
I have a problem sharing links from a site on facebook because, the links are right and appears the following message from the site when sharing: Error 404 (Not Found)!! The site is in wordpress and…
-
4
votes3
answers3345
viewsQ: Div with height 100%
I need to leave one div with height: 100% of content and below it still stand the footer, but, for example, when you have no content to complete the entire screen, the footer appears at the end of…
-
1
votes2
answers1212
viewsQ: How to take background-color from padding?
I’m using Bootstrap 3 and I have a div like this: <li class="col-md-3"> <img src="image.jpg" alt="Example" /> <div style="position: absolute; width: 100%; height: 100%; "> <span…
-
2
votes3
answers526
viewsQ: Tag script is not printed with jQuery
I need to print a script using jQuery however, all the code is printed and the script is not, does anyone know how to solve it? Follow code below: codigo = '<div id="teste"><input…